/dports/graphics/krita/krita-4.4.8/plugins/dockers/lut/ |
H A D | black_white_point_chooser.cpp | 44 m_white = new KisDoubleSliderSpinBox(this); in BlackWhitePointChooser() 45 m_white->setRange(0.0, 10000, 4); in BlackWhitePointChooser() 46 m_white->setValue(1.0); in BlackWhitePointChooser() 47 m_white->setSingleStep(0.01); in BlackWhitePointChooser() 48 m_white->setMinimumWidth(120); in BlackWhitePointChooser() 49 m_white->setExponentRatio(6.0); in BlackWhitePointChooser() 52 connect(m_white, SIGNAL(valueChanged(qreal)), SIGNAL(sigWhitePointChanged(qreal))); in BlackWhitePointChooser() 56 layout->addRow(i18n("White:"), m_white); in BlackWhitePointChooser() 89 return m_white->value(); in whitePoint() 94 m_white->setValue(wp); in setWhitePoint()
|
H A D | black_white_point_chooser.h | 48 KisDoubleSliderSpinBox *m_white; variable
|
/dports/graphics/appleseed/appleseed-2.1.0-beta/src/appleseed/renderer/meta/benchmarks/ |
H A D | benchmark_dynamicspectrum.cpp | 45 DynamicSpectrum31f m_white; in BENCHMARK_SUITE() member 56 m_white = DynamicSpectrum31f(1.0f); in BENCHMARK_SUITE() 77 m_is_zero_result ^= is_zero(m_white); in BENCHMARK_SUITE() 82 m_max_value_result += max_value(m_white); in BENCHMARK_SUITE() 97 m_is_zero_result ^= is_zero(m_white); in BENCHMARK_SUITE() 102 m_max_value_result += max_value(m_white); in BENCHMARK_SUITE()
|
/dports/multimedia/opentoonz/opentoonz-1.5.0/toonz/sources/toonz/ |
H A D | cameracapturelevelcontrol_qt.cpp | 61 , m_white(255) in CameraCaptureLevelHistogram() 137 drawSliderHandle(sliderBasePos + QPoint(m_white, 0), p, in paintEvent() 161 m_offset = pos.x() - SIDE_MARGIN - m_white; in mousePressEvent() 178 else if (hPos > m_white - 2) in mouseMoveEvent() 179 hPos = m_white - 2; in mouseMoveEvent() 187 else if (hPos > m_white - 1) in mouseMoveEvent() 188 hPos = m_white - 1; in mouseMoveEvent() 189 float gamma = hPosToGamma(hPos, m_black, m_white); in mouseMoveEvent() 199 if (hPos != m_white) { in mouseMoveEvent() 200 m_white = hPos; in mouseMoveEvent() [all …]
|
H A D | cameracapturelevelcontrol.cpp | 61 , m_white(255) in CameraCaptureLevelHistogram() 131 drawSliderHandle(sliderBasePos + QPoint(m_white, 0), p, in paintEvent() 151 m_offset = pos.x() - SIDE_MARGIN - m_white; in mousePressEvent() 168 else if (hPos > m_white - 2) in mouseMoveEvent() 169 hPos = m_white - 2; in mouseMoveEvent() 177 else if (hPos > m_white - 1) in mouseMoveEvent() 178 hPos = m_white - 1; in mouseMoveEvent() 179 float gamma = hPosToGamma(hPos, m_black, m_white); in mouseMoveEvent() 189 if (hPos != m_white) { in mouseMoveEvent() 190 m_white = hPos; in mouseMoveEvent() [all …]
|
H A D | cameracapturelevelcontrol.h | 34 int m_black, m_white, m_threshold; variable 46 int white() { return m_white; } in white() 52 m_white = white; in setValues()
|
H A D | cameracapturelevelcontrol_qt.h | 36 int m_black, m_white, m_threshold; variable 48 int white() { return m_white; } in white() 54 m_white = white; in setValues()
|
/dports/games/gogui/gogui-1.4.10/src/net/sf/gogui/tools/twogtp/ |
H A D | TwoGtp.java | 55 m_white = white; in TwoGtp() 56 m_allPrograms.add(m_white); in TwoGtp() 104 if (m_white.isProgramDead()) in autoPlay() 134 twogtpColor(m_white, cmd); in handleCommand() 205 forward(m_white, cmd); in handleCommand() 231 m_white.setIOCallback(null); in setDebugToComment() 303 private final Program m_white; field in TwoGtp 408 forward(m_white, cmd); in finalStatusCommand() 529 nameBlack = m_white.getLabel(); in handleEndOfGame() 689 m_white.getAndClearCpuTime(); in newGame() [all …]
|
/dports/games/pentobi/pentobi-19.1/twogtp/ |
H A D | TwoGtp.cpp | 30 m_white(white) in TwoGtp() 35 m_white.enable_log(log_prefix + "W"); in TwoGtp() 89 auto cpu_white = send_cputime(m_white); in play_game() 110 auto& player_connection = (player == player_black ? m_black : m_white); in play_game() 111 auto& other_connection = (player == player_black ? m_white : m_black); in play_game() 144 cpu_white = send_cputime(m_white) - cpu_white; in play_game() 176 m_white.send(cmd); in send_both()
|
H A D | TwoGtp.h | 48 GtpConnection m_white; variable
|
/dports/graphics/krita/krita-4.4.8/libs/widgets/ |
H A D | KisGradientSlider.cpp | 51 , m_white(255) in KisGradientSlider() 75 return m_white; in white() 267 m_white = qRound(m_whiteCursor / m_scalingFactor); in mouseReleaseEvent() 269 emit sigModifiedWhite(m_white); in mouseReleaseEvent() 330 m_whiteCursor = qRound(m_white * m_scalingFactor); in calculateCursorPositions() 370 if ((m_inverted && (v < m_white || v > width())) || in slotModifyBlack() 371 (!m_inverted && (v < 0 || v > m_white)) || in slotModifyBlack() 383 if ((m_inverted && (v < 0 || v > m_white)) || in slotModifyWhite() 387 m_white = v; in slotModifyWhite() 388 m_whiteCursor = qRound(m_white * m_scalingFactor); in slotModifyWhite()
|
H A D | KisGradientSlider.h | 96 int m_white; variable
|
/dports/games/gogui/gogui-1.4.10/src/net/sf/gogui/gui/ |
H A D | TimeLeftDialog.java | 75 private final PlayerTime m_white; field in TimeLeftDialog 80 m_white = createPlayerTime(WHITE, clock); in TimeLeftDialog() 81 m_white.m_box.setAlignmentX(Component.LEFT_ALIGNMENT); in TimeLeftDialog() 82 box.add(m_white.m_box); in TimeLeftDialog() 144 (c == BLACK ? m_black.m_movesLeft : m_white.m_movesLeft); in getMovesLeft() 158 (c == BLACK ? m_black.m_timeLeft : m_white.m_timeLeft); in getTimeLeft() 174 && validatePosIntOrEmpty(parent, m_white.m_movesLeft, in validate() 180 && validateTime(parent, m_white.m_timeLeft, in validate()
|
H A D | AnalyzeDialog.java | 219 private JRadioButton m_white; field in AnalyzeDialog 280 m_white = new JRadioButton(i18n("LB_WHITE")); in createColorPanel() 281 m_white.setToolTipText(i18n("TT_ANALYZE_WHITE")); in createColorPanel() 282 m_white.setEnabled(false); in createColorPanel() 283 group.add(m_white); in createColorPanel() 284 m_colorBox.add(m_white); in createColorPanel() 575 m_white.setSelected(true); in selectColor() 607 m_white.setEnabled(needsColorArg); in updateOptions()
|
H A D | ScoreDialog.java | 120 public JTextField m_white; field in ScoreDialog.ColorFields 202 colorFields.m_white = white; in createColorEntry() 289 setTextInteger(m_territory.m_white, m_score.m_territoryWhite); in showScore() 291 setTextInteger(m_area.m_white, m_score.m_areaWhite); in showScore() 293 setTextInteger(m_prisoners.m_white, m_score.m_capturedBlack); in showScore()
|
H A D | GameInfoDialog.java | 70 private final PlayerInfo m_white; field in GameInfoDialog 81 m_white = createPlayerInfo(WHITE, info); in GameInfoDialog() 82 m_white.m_box.setAlignmentX(Component.LEFT_ALIGNMENT); in GameInfoDialog() 83 outerBox.add(m_white.m_box); in GameInfoDialog() 229 getTextFieldContent(m_white.m_name)); in updateGameInfo() 233 getTextFieldContent(m_white.m_rank)); in updateGameInfo()
|
/dports/audio/milkytracker/MilkyTracker-1.03.00/src/tracker/ |
H A D | VRand.h | 66 m_white = 0; in VRand() 93 m_white = m_seed >> 9; 94 m_white |= 0x40000000; 158 pp_uint32 m_white; member
|
/dports/graphics/blender/blender-2.91.0/source/blender/compositor/operations/ |
H A D | COM_ColorCurveOperation.h | 62 float m_white[3]; variable 88 copy_v3_v3(this->m_white, white); in setWhiteLevel()
|
/dports/games/knights/knights-21.12.3/src/proto/ |
H A D | protocol.cpp | 33 QPointer<Protocol> Protocol::m_white = nullptr; member in Knights::Protocol 89 m_white = p; in setWhiteProtocol() 98 return m_white; in white()
|
/dports/comms/mgetty+sendfax/mgetty-1.1.37/g3/ |
H A D | g3cat.c | 87 if ( m_white[idx].nr_pels != mkup ) /* paranoia alert */ 92 putcode( m_white[idx].bit_code, m_white[idx].bit_length ); 203 build_tree( &white, m_white );
|
H A D | pbm2g3.c | 89 if ( m_white[idx].nr_pels != mkup ) /* paranoia alert */ 94 putcode( m_white[idx].bit_code, m_white[idx].bit_length );
|
H A D | g3.h | 15 extern struct g3code t_white[], m_white[], t_black[], m_black[], m_ext[];
|
/dports/graphics/gimp-app/gimp-2.10.30/plug-ins/file-faxg3/ |
H A D | g3.h | 15 extern struct g3code t_white[], m_white[], t_black[], m_black[], m_ext[];
|
/dports/graphics/luminance-qt5/luminance-hdr-2.6.1.1/src/TonemappingOperators/reinhard02/ |
H A D | tmo_reinhard02.cpp | 322 if (m_white < 1e20) in tonemap_image() 323 Lmax2 = m_white * m_white; in tonemap_image() 441 m_white(1e20), in Reinhard02()
|
H A D | tmo_reinhard02.h | 84 float m_key, m_twopowphi, m_white; variable
|