Home
last modified time | relevance | path

Searched refs:rgb8 (Results 1 – 25 of 491) sorted by relevance

12345678910>>...20

/dports/editors/ted/Ted-2.23/appUtil/
H A DutilColor.h23 # define RGB8DEB(rgb8) appDebug("%s(%3d) %s= RGBA:%d:%d:%d:%d\n", \ argument
24 __FILE__, __LINE__, #rgb8, \
25 (rgb8)->rgb8Red, (rgb8)->rgb8Green, \
26 (rgb8)->rgb8Blue, (rgb8)->rgb8Alpha )
30 #l, ((long)l), #rgb8, \
31 (rgb8)->rgb8Red, (rgb8)->rgb8Green, \
32 (rgb8)->rgb8Blue, (rgb8)->rgb8Alpha )
86 extern void utilInitRGB8Color( RGB8Color * rgb8 );
91 const RGB8Color * rgb8 );
93 extern int utilRGB8FromLumaChromaHue( RGB8Color * rgb8,
[all …]
H A DutilColor.c17 rgb8->rgb8Red= 0; in utilInitRGB8Color()
18 rgb8->rgb8Green= 0; in utilInitRGB8Color()
19 rgb8->rgb8Blue= 0; in utilInitRGB8Color()
20 rgb8->rgb8Alpha= 255; in utilInitRGB8Color()
33 return rgb8->rgb8Red; in utilRGB8GetComponent()
35 return rgb8->rgb8Green; in utilRGB8GetComponent()
37 return rgb8->rgb8Blue; in utilRGB8GetComponent()
39 return rgb8->rgb8Alpha; in utilRGB8GetComponent()
236 rgb8->rgb8Red= R1; in utilRGB8FromLumaChromaHue()
237 rgb8->rgb8Green= G1; in utilRGB8FromLumaChromaHue()
[all …]
/dports/editors/ted/Ted-2.23/bitmap/
H A Dbmmapcolors.c151 RGB8Color * rgb8; in bmMapImageColors() local
154 rgb8= bd->bdPalette.cpColors; in bmMapImageColors()
155 for ( i= 0; i < bd->bdPalette.cpColorCount; rgb8++, i++ ) in bmMapImageColors()
157 rgb8->rgb8Red= map[spp* rgb8->rgb8Red+ 0]; in bmMapImageColors()
158 rgb8->rgb8Green= map[spp* rgb8->rgb8Green+ 1]; in bmMapImageColors()
159 rgb8->rgb8Blue= map[spp* rgb8->rgb8Blue+ 2]; in bmMapImageColors()
164 rgb8= bd->bdPalette.cpColors; in bmMapImageColors()
167 rgb8->rgb8Red= map[spp* rgb8->rgb8Red+ 0]; in bmMapImageColors()
168 rgb8->rgb8Green= map[spp* rgb8->rgb8Green+ 1]; in bmMapImageColors()
169 rgb8->rgb8Blue= map[spp* rgb8->rgb8Blue+ 2]; in bmMapImageColors()
[all …]
H A Dbmxpm.c27 RGB8Color * rgb8 ) in bmXpmPaletteColor() argument
42 rgb8->rgb8Red= 255; in bmXpmPaletteColor()
43 rgb8->rgb8Green= 255; in bmXpmPaletteColor()
44 rgb8->rgb8Blue= 255; in bmXpmPaletteColor()
45 rgb8->rgb8Alpha= 0; in bmXpmPaletteColor()
56 rgb8->rgb8Alpha= 255; in bmXpmPaletteColor()
64 rgb8->rgb8Red= r; in bmXpmPaletteColor()
65 rgb8->rgb8Green= g; in bmXpmPaletteColor()
66 rgb8->rgb8Blue= b; in bmXpmPaletteColor()
109 rgb8->rgb8Red= r; in bmXpmPaletteColor()
[all …]
H A Dbm_dgif_lib.c32 RGB8Color * rgb8; in bmGifInitGifColorMap() local
37 rgb8= gcm->gcmColors; in bmGifInitGifColorMap()
38 for ( i = 0; i < 256; rgb8++, i++ ) in bmGifInitGifColorMap()
40 rgb8->rgb8Red= 255; in bmGifInitGifColorMap()
41 rgb8->rgb8Green= 255; in bmGifInitGifColorMap()
42 rgb8->rgb8Blue= 255; in bmGifInitGifColorMap()
43 rgb8->rgb8Alpha= 255; in bmGifInitGifColorMap()
53 RGB8Color * rgb8; in bmGifReadColorMap() local
61 rgb8= gcm->gcmColors; in bmGifReadColorMap()
64 rgb8->rgb8Red= sioInGetByte( gft->gftSis ); in bmGifReadColorMap()
[all …]
/dports/editors/ted/Ted-2.23/appFrame/
H A DdrawDrawingWidgetGtk.c240 rgb8->rgb8Red= xc->red/ 256; in guiGetForegroundColor()
241 rgb8->rgb8Green= xc->green/ 256; in guiGetForegroundColor()
242 rgb8->rgb8Blue= xc->blue/ 256; in guiGetForegroundColor()
243 rgb8->rgb8Alpha= 255; in guiGetForegroundColor()
254 rgb8->rgb8Red= xc->red/ 256; in guiGetBackgroundColor()
255 rgb8->rgb8Green= xc->green/ 256; in guiGetBackgroundColor()
256 rgb8->rgb8Blue= xc->blue/ 256; in guiGetBackgroundColor()
257 rgb8->rgb8Alpha= 255; in guiGetBackgroundColor()
262 void guiGetTopShadowColor( RGB8Color * rgb8, in guiGetTopShadowColor() argument
267 utilGetTopShadowColor( rgb8, rgb8 ); in guiGetTopShadowColor()
[all …]
H A DdrawDrawingWidgetMotif.c216 static void guiGetColor( RGB8Color * rgb8, in guiGetColor() argument
233 rgb8->rgb8Red= xc.red/ 256; in guiGetColor()
234 rgb8->rgb8Green= xc.green/ 256; in guiGetColor()
235 rgb8->rgb8Blue= xc.blue/ 256; in guiGetColor()
236 rgb8->rgb8Alpha= 255; in guiGetColor()
241 void guiGetForegroundColor( RGB8Color * rgb8, in guiGetForegroundColor() argument
244 guiGetColor( rgb8, XmNforeground, nativeWidget ); in guiGetForegroundColor()
248 void guiGetBackgroundColor( RGB8Color * rgb8, in guiGetBackgroundColor() argument
251 guiGetColor( rgb8, XmNbackground, nativeWidget ); in guiGetBackgroundColor()
255 void guiGetTopShadowColor( RGB8Color * rgb8, in guiGetTopShadowColor() argument
[all …]
H A DdrawDrawingSurfaceUtil.c15 RGB8Color rgb8; in drawSetForegroundColorWhite() local
17 utilRGB8SolidWhite( &rgb8 ); in drawSetForegroundColorWhite()
19 return drawSetForegroundColor( ds, &rgb8 ); in drawSetForegroundColorWhite()
24 RGB8Color rgb8; in drawSetForegroundColorBlack() local
26 utilRGB8SolidBlack( &rgb8 ); in drawSetForegroundColorBlack()
28 return drawSetForegroundColor( ds, &rgb8 ); in drawSetForegroundColorBlack()
H A DappColorChooser.c30 const RGB8Color * rgb8 ) in appColorChooserSetColor() argument
46 cc->ccColorChosen= *rgb8; in appColorChooserSetColor()
59 cc->ccColorChosen= *rgb8; in appColorChooserSetColor()
289 RGB8Color * rgb8; in APP_EVENT_HANDLER_H() local
496 ccpc->ccpcRGB8Color= *rgb8; in appColorChooserAllocateColor()
569 RGB8Color rgb8; in appColorChooserTryColor() local
571 rgb8.rgb8Red= r; in appColorChooserTryColor()
572 rgb8.rgb8Green= g; in appColorChooserTryColor()
573 rgb8.rgb8Blue= b; in appColorChooserTryColor()
574 rgb8.rgb8Alpha= 255; in appColorChooserTryColor()
[all …]
/dports/editors/ted/Ted-2.23/docHtml/
H A DdocWriteCss.c36 RGB8Color rgb8; in docCssUseBackgroundStyle() local
40 if ( docGetSolidRgbShadeOfItem( &isFilled, &rgb8, bd, is ) ) in docCssUseBackgroundStyle()
55 RGB8Color rgb8; in docCssEmitBackgroundStyle() local
67 rgb8.rgb8Red, rgb8.rgb8Green, rgb8.rgb8Blue ); in docCssEmitBackgroundStyle()
116 const RGB8Color * rgb8= colpal->cpColors+ bp->bpColor; in docCssEmitBorderStyle() local
121 rgb8->rgb8Red, in docCssEmitBorderStyle()
122 rgb8->rgb8Green, in docCssEmitBorderStyle()
123 rgb8->rgb8Blue ); in docCssEmitBorderStyle()
203 rgb8->rgb8Red, in docCssSaveTextAttributeStyle()
204 rgb8->rgb8Green, in docCssSaveTextAttributeStyle()
[all …]
/dports/graphics/krita/krita-4.4.8/libs/pigment/tests/
H A DTestColorConversionSystem.cpp78 const KoColorSpace *rgb8 = KoColorSpaceRegistry::instance()->rgb8(); in testAlphaConversions() local
84 c.convertTo(rgb8); in testAlphaConversions()
92 c.convertTo(rgb8); in testAlphaConversions()
100 c.convertTo(rgb8); in testAlphaConversions()
136 const KoColorSpace *rgb8 = KoColorSpaceRegistry::instance()->rgb8(); in testAlphaU16Conversions() local
142 c.convertTo(rgb8); in testAlphaU16Conversions()
150 c.convertTo(rgb8); in testAlphaU16Conversions()
158 c.convertTo(rgb8); in testAlphaU16Conversions()
193 const KoColorSpace *rgb8 = KoColorSpaceRegistry::instance()->rgb8(); in benchmarkAlphaToRgbConversion() local
207 rgb8, in benchmarkAlphaToRgbConversion()
[all …]
/dports/multimedia/ffmpeg/ffmpeg-4.4.1/tests/ref/lavf/
H A Drgb8.xwd1 c6f3cb7c45f7238474a89d2ad61a1caf *tests/data/images/rgb8.xwd/02.rgb8.xwd
2 tests/data/images/rgb8.xwd/%02d.rgb8.xwd CRC=0xf217a95e
3 104559 tests/data/images/rgb8.xwd/02.rgb8.xwd
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/ffmpeg/tests/ref/lavf/
H A Drgb8.xwd1 c6f3cb7c45f7238474a89d2ad61a1caf *tests/data/images/rgb8.xwd/02.rgb8.xwd
2 tests/data/images/rgb8.xwd/%02d.rgb8.xwd CRC=0xf217a95e
3 104559 tests/data/images/rgb8.xwd/02.rgb8.xwd
/dports/multimedia/handbrake/ffmpeg-4.4/tests/ref/lavf/
H A Drgb8.xwd1 c6f3cb7c45f7238474a89d2ad61a1caf *tests/data/images/rgb8.xwd/02.rgb8.xwd
2 tests/data/images/rgb8.xwd/%02d.rgb8.xwd CRC=0xf217a95e
3 104559 tests/data/images/rgb8.xwd/02.rgb8.xwd
/dports/graphics/p5-Convert-Color/Convert-Color-0.11/lib/Convert/Color/
H A DRGB8.pm149 sub rgb8 subroutine
166 sprintf "%02x%02x%02x", $self->rgb8;
190 my ( $rA, $gA, $bA ) = $self->rgb8;
191 my ( $rB, $gB, $bB ) = $other->as_rgb8->rgb8;
221 my ( $rA, $gA, $bA ) = $self->rgb8;
222 my ( $rB, $gB, $bB ) = $other->as_rgb8->rgb8;
265 my ( $rA, $gA, $bA ) = $self->rgb8;
266 my ( $rB, $gB, $bB ) = $other->as_rgb8->rgb8;
/dports/editors/ted/Ted-2.23/docLayout/
H A DdocPsPrint.c91 RGB8Color rgb8; in docPsPageBoxes() local
93 rgb8.rgb8Alpha= 255; in docPsPageBoxes()
100 rgb8.rgb8Red= 255; in docPsPageBoxes()
101 rgb8.rgb8Green= 199; in docPsPageBoxes()
102 rgb8.rgb8Blue= 199; in docPsPageBoxes()
112 rgb8.rgb8Red= 199; in docPsPageBoxes()
114 rgb8.rgb8Blue= 255; in docPsPageBoxes()
124 rgb8.rgb8Red= 199; in docPsPageBoxes()
126 rgb8.rgb8Blue= 199; in docPsPageBoxes()
136 rgb8.rgb8Red= 0; in docPsPageBoxes()
[all …]
H A DdocDrawUtil.c124 const RGB8Color * rgb8 ) in docDrawSetColorRgb() argument
127 dc->dcCurrentColor.rgb8Red != rgb8->rgb8Red || in docDrawSetColorRgb()
128 dc->dcCurrentColor.rgb8Green != rgb8->rgb8Green || in docDrawSetColorRgb()
129 dc->dcCurrentColor.rgb8Blue != rgb8->rgb8Blue ) in docDrawSetColorRgb()
132 (*dc->dcSetColorRgb)( dc, through, rgb8 ) ) in docDrawSetColorRgb()
135 dc->dcCurrentColor= *rgb8; in docDrawSetColorRgb()
147 RGB8Color rgb8; in docDrawSetColorNumber() local
149 docGetColorByNumber( &rgb8, lc->lcDocument, colorNumber ); in docDrawSetColorNumber()
150 docDrawSetColorRgb( dc, through, &rgb8 ); in docDrawSetColorNumber()
/dports/graphics/p5-Convert-Color/Convert-Color-0.11/t/
H A D21rgb-blend.t32 is_deeply( [ $pink8->rgb8 ], [ 255, 128, 128 ], 'alpha_blend rgb' );
34 is_deeply( [ $red8->alpha_blend( $white8, 0.25 )->rgb8 ], [ 255, 64, 64 ], 'alpha_blend(0.25) white…
35 is_deeply( [ $red8->alpha_blend( $white8, 0.75 )->rgb8 ], [ 255, 191, 191 ], 'alpha_blend(0.75) whi…
37 is_deeply( [ $red8->alpha_blend( $black8, 0.25 )->rgb8 ], [ 191, 0, 0 ], 'alpha_blend(0.25) black8'…
41 is_deeply( [ $red8->alpha8_blend( $white8, 64 )->rgb8 ], [ 255, 64, 64 ], 'alpha8_blend(64) white8'…
42 is_deeply( [ $red8->alpha8_blend( $white8, 191 )->rgb8 ], [ 255, 191, 191 ], 'alpha8_blend(191) whi…
44 is_deeply( [ $red8->alpha8_blend( $black8, 64 )->rgb8 ], [ 191, 0, 0 ], 'alpha8_blend(64) black8' );
/dports/editors/ted/Ted-2.23/docRtf/
H A DdocRtfWriteColorTable.c26 const RGB8Color * rgb8= dp->dpColorPalette->cpColors; in docRtfWriteColorTable() local
31 for ( i= 0; i < dp->dpColorPalette->cpColorCount; rgb8++, i++ ) in docRtfWriteColorTable()
35 docRtfWriteArgTag( rwc, "red", rgb8->rgb8Red ); in docRtfWriteColorTable()
36 docRtfWriteArgTag( rwc, "green", rgb8->rgb8Green ); in docRtfWriteColorTable()
37 docRtfWriteArgTag( rwc, "blue", rgb8->rgb8Blue ); in docRtfWriteColorTable()
/dports/graphics/swftools/swftools-0.9.2/lib/pdf/xpdf/
H A DSplashTypes.h65 static inline Guchar splashRGB8R(SplashColorPtr rgb8) { return rgb8[0]; } in splashRGB8R() argument
66 static inline Guchar splashRGB8G(SplashColorPtr rgb8) { return rgb8[1]; } in splashRGB8G() argument
67 static inline Guchar splashRGB8B(SplashColorPtr rgb8) { return rgb8[2]; } in splashRGB8B() argument
/dports/graphics/xpdf3/xpdf-3.04/splash/
H A DSplashTypes.h67 static inline Guchar splashRGB8R(SplashColorPtr rgb8) { return rgb8[0]; } in splashRGB8R() argument
68 static inline Guchar splashRGB8G(SplashColorPtr rgb8) { return rgb8[1]; } in splashRGB8G() argument
69 static inline Guchar splashRGB8B(SplashColorPtr rgb8) { return rgb8[2]; } in splashRGB8B() argument
/dports/graphics/xpdf/xpdf-4.03/splash/
H A DSplashTypes.h67 static inline Guchar splashRGB8R(SplashColorPtr rgb8) { return rgb8[0]; } in splashRGB8R() argument
68 static inline Guchar splashRGB8G(SplashColorPtr rgb8) { return rgb8[1]; } in splashRGB8G() argument
69 static inline Guchar splashRGB8B(SplashColorPtr rgb8) { return rgb8[2]; } in splashRGB8B() argument
/dports/graphics/xpdf4/xpdf-4.03/splash/
H A DSplashTypes.h67 static inline Guchar splashRGB8R(SplashColorPtr rgb8) { return rgb8[0]; } in splashRGB8R() argument
68 static inline Guchar splashRGB8G(SplashColorPtr rgb8) { return rgb8[1]; } in splashRGB8G() argument
69 static inline Guchar splashRGB8B(SplashColorPtr rgb8) { return rgb8[2]; } in splashRGB8B() argument
/dports/devel/tex-web2c/texlive-20150521-source/libs/xpdf/xpdf-3.04/splash/
H A DSplashTypes.h67 static inline Guchar splashRGB8R(SplashColorPtr rgb8) { return rgb8[0]; } in splashRGB8R() argument
68 static inline Guchar splashRGB8G(SplashColorPtr rgb8) { return rgb8[1]; } in splashRGB8G() argument
69 static inline Guchar splashRGB8B(SplashColorPtr rgb8) { return rgb8[2]; } in splashRGB8B() argument
/dports/japanese/tex-ptex/texlive-20150521-source/libs/xpdf/xpdf-3.04/splash/
H A DSplashTypes.h67 static inline Guchar splashRGB8R(SplashColorPtr rgb8) { return rgb8[0]; } in splashRGB8R() argument
68 static inline Guchar splashRGB8G(SplashColorPtr rgb8) { return rgb8[1]; } in splashRGB8G() argument
69 static inline Guchar splashRGB8B(SplashColorPtr rgb8) { return rgb8[2]; } in splashRGB8B() argument

12345678910>>...20