Home
last modified time | relevance | path

Searched refs:newRgb (Results 1 – 5 of 5) sorted by relevance

/dports/graphics/netpbm/netpbm-10.91.01/editor/
H A Dpamhue.c95 pixel oldRgb, newRgb; in changeHue() local
108 newRgb = ppm_color_from_hsv(newHsv, maxval); in changeHue()
110 tupleval[PAM_RED_PLANE] = PPM_GETR(newRgb); in changeHue()
111 tupleval[PAM_GRN_PLANE] = PPM_GETG(newRgb); in changeHue()
112 tupleval[PAM_BLU_PLANE] = PPM_GETB(newRgb); in changeHue()
H A Dpambrighten.c104 pixel oldRgb, newRgb; in changeColorPix() local
118 newRgb = ppm_color_from_hsv(newHsv, pamP->maxval); in changeColorPix()
120 tupleval[PAM_RED_PLANE] = PPM_GETR(newRgb); in changeColorPix()
121 tupleval[PAM_GRN_PLANE] = PPM_GETG(newRgb); in changeColorPix()
122 tupleval[PAM_BLU_PLANE] = PPM_GETB(newRgb); in changeColorPix()
/dports/graphics/reallyslick/rss-glx_0.9.1/src/
H A Dhelios.cpp61 rsVec newRgb; variable
226 rgb = newRgb; in start()
589 hsl2rgb (newHsl[0], newHsl[1], 1.0f, newRgb[0], newRgb[1], newRgb[2]); in hack_draw()
720 glColor3f (newRgb[0] * brightFactor, newRgb[1] * brightFactor, newRgb[2] * brightFactor); in hack_draw()
767 glColor3f (newRgb[0] * brightFactor, newRgb[1] * brightFactor, newRgb[2] * brightFactor); in hack_draw()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/texteditor/
H A DTextEditor.java557 RGB newRgb = dialog.open(); in createToolBar()
558 if (newRgb != null) { in createToolBar()
559 if (!newRgb.equals(rgb)) { in createToolBar()
595 RGB newRgb = dialog.open(); in createToolBar()
596 if (newRgb == null) return; in createToolBar()
597 if (!newRgb.equals(rgb)) { in createToolBar()
637 RGB newRgb = dialog.open(); in createToolBar()
638 if (newRgb != null) { in createToolBar()
639 if (!newRgb.equals(rgb)) { in createToolBar()
675 if (!newRgb.equals(rgb)) { in createToolBar()
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/tests/org.eclipse.ui.tests.navigator/src/org/eclipse/ui/tests/navigator/extension/
H A DTestLabelProvider.java74 RGB newRgb = new RGB(rgb.blue, rgb.red, rgb.green); in toForegroundColor() local
75 return new Color(Display.getCurrent(), newRgb); in toForegroundColor()