Home
last modified time | relevance | path

Searched refs:ddpfPixelFormat (Results 1 – 25 of 109) sorted by relevance

12345

/dports/games/diaspora/Diaspora_R1_Linux/Diaspora/fs2_open/code/ddsutils/
H A Dddsutils.cpp85 dds_header.ddpfPixelFormat.dwSize = cfread_uint(ddsfile); in dds_read_header()
109 if (dds_header.ddpfPixelFormat.dwFlags & DDPF_FOURCC) { in dds_read_header()
152 switch (dds_header.ddpfPixelFormat.dwFourCC) { in dds_read_header()
222 bits = dds_header.ddpfPixelFormat.dwRGBBitCount; in dds_read_header()
407 dds_header.ddpfPixelFormat.dwSize = 32; in dds_save_image()
408 dds_header.ddpfPixelFormat.dwFlags = pixel_flags; in dds_save_image()
409 dds_header.ddpfPixelFormat.dwFourCC = 0; in dds_save_image()
410 dds_header.ddpfPixelFormat.dwRGBBitCount = bpp; in dds_save_image()
411 dds_header.ddpfPixelFormat.dwRBitMask = 0x00ff0000; in dds_save_image()
412 dds_header.ddpfPixelFormat.dwGBitMask = 0x0000ff00; in dds_save_image()
[all …]
/dports/devel/apitrace/apitrace-9.0/retrace/
H A Dd3d7state_images.cpp80 convertFormat(const DDPIXELFORMAT & ddpfPixelFormat) in convertFormat() argument
82 if (ddpfPixelFormat.dwSize != sizeof ddpfPixelFormat) { in convertFormat()
86 switch (ddpfPixelFormat.dwFlags) { in convertFormat()
88 switch (ddpfPixelFormat.dwRGBBitCount) { in convertFormat()
90 if (ddpfPixelFormat.dwRBitMask == 0xff0000 && in convertFormat()
91 ddpfPixelFormat.dwGBitMask == 0x00ff00 && in convertFormat()
92 ddpfPixelFormat.dwBBitMask == 0x0000ff) { in convertFormat()
100 switch (ddpfPixelFormat.dwZBufferBitDepth) { in convertFormat()
102 if (ddpfPixelFormat.dwZBitMask == 0x0000ffff) { in convertFormat()
107 if (ddpfPixelFormat.dwZBitMask == 0x00ffffff) { in convertFormat()
[all …]
/dports/graphics/electricsheep/electricsheep-37ba0fd692d6581f8fe009ed11c9650cd8174123/client_generic/MSVC/
H A DTextureFlatDD.cpp78 sd.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT); in Bind()
79 sd.ddpfPixelFormat.dwRGBBitCount = 32; in Bind()
80 sd.ddpfPixelFormat.dwFlags = DDPF_RGB; in Bind()
81 sd.ddpfPixelFormat.dwRBitMask = 0xff0000; in Bind()
82 sd.ddpfPixelFormat.dwGBitMask = 0x00ff00; in Bind()
83 sd.ddpfPixelFormat.dwBBitMask = 0x0000ff; in Bind()
/dports/graphics/osg/OpenSceneGraph-OpenSceneGraph-3.6.5/src/osgPlugins/dds/
H A DReaderWriterDDS.cpp191 DDPIXELFORMAT ddpfPixelFormat; member
453 if(ddsd.ddpfPixelFormat.dwFlags & DDPF_BUMPDUDV) in ReadDDSFile()
464 if(ddsd.ddpfPixelFormat.dwFlags & DDPF_BUMPLUMINANCE) in ReadDDSFile()
482 if(ddsd.ddpfPixelFormat.dwFlags & DDPF_FOURCC) in ReadDDSFile()
484 switch(ddsd.ddpfPixelFormat.dwFourCC) in ReadDDSFile()
802 else if(ddsd.ddpfPixelFormat.dwFlags & DDPF_RGB) in ReadDDSFile()
914 else if(ddsd.ddpfPixelFormat.dwFlags & DDPF_LUMINANCE) in ReadDDSFile()
946 else if(ddsd.ddpfPixelFormat.dwFlags & DDPF_ALPHA) in ReadDDSFile()
1000 if (ddsd.ddpfPixelFormat.dwFlags & DDPF_PALETTEINDEXED8) in ReadDDSFile()
1035 if (ddsd.ddpfPixelFormat.dwFlags & DDPF_PALETTEINDEXED8) in ReadDDSFile()
[all …]
/dports/devel/allegro/allegro-4.4.3.1/src/win/
H A Dwddmode.c192 _win_desktop_depth = surf_desc.ddpfPixelFormat.dwRGBBitCount; in gfx_directx_compare_color_depth()
194 _win_desktop_depth = get_color_bits(surf_desc.ddpfPixelFormat.dwRBitMask) + in gfx_directx_compare_color_depth()
195 get_color_bits(surf_desc.ddpfPixelFormat.dwGBitMask) + in gfx_directx_compare_color_depth()
196 get_color_bits(surf_desc.ddpfPixelFormat.dwBBitMask); in gfx_directx_compare_color_depth()
206 ((surf_desc.ddpfPixelFormat.dwRBitMask & pixel_format[i].dwRBitMask) || in gfx_directx_compare_color_depth()
207 (surf_desc.ddpfPixelFormat.dwBBitMask & pixel_format[i].dwBBitMask) || in gfx_directx_compare_color_depth()
288 …gfx_mode_list->mode[gfx_mode_list->num_modes].bpp = lpDDSurfaceDesc->ddpfPixelFormat.dwRGBBitCo… in EnumModesCallback()
293 get_color_bits(lpDDSurfaceDesc->ddpfPixelFormat.dwRBitMask) + in EnumModesCallback()
294 get_color_bits(lpDDSurfaceDesc->ddpfPixelFormat.dwGBitMask) + in EnumModesCallback()
295 get_color_bits(lpDDSurfaceDesc->ddpfPixelFormat.dwBBitMask); in EnumModesCallback()
/dports/graphics/py-pyglet/pyglet-1.5.21/pyglet/image/codecs/
H A Ddds.py125 self.ddpfPixelFormat = DDPIXELFORMAT(self.ddpfPixelFormat)
171 if desc.ddpfPixelFormat.dwSize != 32:
177 if not desc.ddpfPixelFormat.dwFlags & DDPF_FOURCC:
180 has_alpha = desc.ddpfPixelFormat.dwRGBAlphaBitMask != 0
182 selector = (desc.ddpfPixelFormat.dwFourCC, has_alpha)
184 … raise ImageDecodeException('Unsupported texture compression %s' % desc.ddpfPixelFormat.dwFourCC)
/dports/graphics/py-pyglet150/pyglet-1.5.0/pyglet/image/codecs/
H A Ddds.py125 self.ddpfPixelFormat = DDPIXELFORMAT(self.ddpfPixelFormat)
171 if desc.ddpfPixelFormat.dwSize != 32:
177 if not desc.ddpfPixelFormat.dwFlags & DDPF_FOURCC:
180 has_alpha = desc.ddpfPixelFormat.dwRGBAlphaBitMask != 0
182 selector = (desc.ddpfPixelFormat.dwFourCC, has_alpha)
184 … raise ImageDecodeException('Unsupported texture compression %s' % desc.ddpfPixelFormat.dwFourCC)
/dports/graphics/osg34/OpenSceneGraph-OpenSceneGraph-3.4.1/src/osgPlugins/dds/
H A DReaderWriterDDS.cpp191 DDPIXELFORMAT ddpfPixelFormat;
430 if(ddsd.dwSize != 124 && ddsd.ddpfPixelFormat.dwSize != 32)
452 if(ddsd.ddpfPixelFormat.dwFlags & DDPF_BUMPDUDV)
463 if(ddsd.ddpfPixelFormat.dwFlags & DDPF_BUMPLUMINANCE)
476 bool usingAlpha = ddsd.ddpfPixelFormat.dwFlags & DDPF_ALPHAPIXELS;
481 if(ddsd.ddpfPixelFormat.dwFlags & DDPF_RGB)
589 else if(ddsd.ddpfPixelFormat.dwFlags & DDPF_LUMINANCE)
621 else if(ddsd.ddpfPixelFormat.dwFlags & DDPF_ALPHA)
628 else if(ddsd.ddpfPixelFormat.dwFlags & DDPF_FOURCC)
630 switch(ddsd.ddpfPixelFormat.dwFourCC)
[all …]
/dports/games/alephone/alephone-release-20190331/Source_Files/RenderMain/
H A DImageLoader_Shared.cpp249ddpfPixelFormat.dwRGBBitCount, pitch, ddsd.ddpfPixelFormat.dwRBitMask, ddsd.ddpfPixelFormat.dwGBit… in LoadMipMapFromFile()
376 inputStream >> ddsd.ddpfPixelFormat.dwSize; in LoadDDSFromFile()
379 inputStream >> ddsd.ddpfPixelFormat.dwFlags; in LoadDDSFromFile()
380 inputStream >> ddsd.ddpfPixelFormat.dwFourCC; in LoadDDSFromFile()
381 inputStream >> ddsd.ddpfPixelFormat.dwRGBBitCount; in LoadDDSFromFile()
382 …if ((ddsd.ddpfPixelFormat.dwFlags & DDPF_RGB) && ddsd.ddpfPixelFormat.dwRGBBitCount != 32 && ddsd. in LoadDDSFromFile()
390 if (ddsd.ddpfPixelFormat.dwRGBBitCount == 24) in LoadDDSFromFile()
393 ddsd.ddpfPixelFormat.dwRBitMask >>= 8; in LoadDDSFromFile()
394 ddsd.ddpfPixelFormat.dwGBitMask >>= 8; in LoadDDSFromFile()
395 ddsd.ddpfPixelFormat.dwBBitMask >>= 8; in LoadDDSFromFile()
[all …]
/dports/games/libretro-beetle_bsnes/beetle-bsnes-libretro-b65ded5bde278c18af538c687db9b72c995b220a/mednafen/snes/src/lib/ruby/video/
H A Ddirectdraw.cpp58 int depth = ddsd.ddpfPixelFormat.dwRGBBitCount; in resize()
68 ddsd.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT); in resize()
69 ddsd.ddpfPixelFormat.dwFlags = DDPF_RGB; in resize()
70 ddsd.ddpfPixelFormat.dwRGBBitCount = 32; in resize()
71 ddsd.ddpfPixelFormat.dwRBitMask = 0xff0000; in resize()
72 ddsd.ddpfPixelFormat.dwGBitMask = 0x00ff00; in resize()
73 ddsd.ddpfPixelFormat.dwBBitMask = 0x0000ff; in resize()
/dports/games/NBlood/NBlood-a1689a4/source/tools/src/
H A Denumdisplay.cpp44 …if (ddsd->ddpfPixelFormat.dwFlags & DDPF_PALETTEINDEXED1) fprintf(output, " DDPF_PALETTEINDEXED1"); in ddenum()
45 …if (ddsd->ddpfPixelFormat.dwFlags & DDPF_PALETTEINDEXED2) fprintf(output, " DDPF_PALETTEINDEXED2"); in ddenum()
46 …if (ddsd->ddpfPixelFormat.dwFlags & DDPF_PALETTEINDEXED4) fprintf(output, " DDPF_PALETTEINDEXED4"); in ddenum()
47 …if (ddsd->ddpfPixelFormat.dwFlags & DDPF_PALETTEINDEXED8) fprintf(output, " DDPF_PALETTEINDEXED8"); in ddenum()
48 if (ddsd->ddpfPixelFormat.dwFlags & DDPF_RGB) fprintf(output, " DDPF_RGB"); in ddenum()
49 … fprintf(output, "\n\tddpfPixelFormat.dwRGBBitCount = %lu\n", ddsd->ddpfPixelFormat.dwRGBBitCount); in ddenum()
/dports/games/jfsw/jfsw-c434002/jfbuild/src/misc/
H A Denumdisplay.c44 if (ddsd->ddpfPixelFormat.dwFlags & DDPF_PALETTEINDEXED1) fprintf(output, " DDPF_PALETTEINDEXED1"); in ddenum()
45 if (ddsd->ddpfPixelFormat.dwFlags & DDPF_PALETTEINDEXED2) fprintf(output, " DDPF_PALETTEINDEXED2"); in ddenum()
46 if (ddsd->ddpfPixelFormat.dwFlags & DDPF_PALETTEINDEXED4) fprintf(output, " DDPF_PALETTEINDEXED4"); in ddenum()
47 if (ddsd->ddpfPixelFormat.dwFlags & DDPF_PALETTEINDEXED8) fprintf(output, " DDPF_PALETTEINDEXED8"); in ddenum()
48 if (ddsd->ddpfPixelFormat.dwFlags & DDPF_RGB) fprintf(output, " DDPF_RGB"); in ddenum()
49 fprintf(output, "\n\tddpfPixelFormat.dwRGBBitCount = %d\n", ddsd->ddpfPixelFormat.dwRGBBitCount); in ddenum()
/dports/devel/sdl12/SDL-1.2.15/src/video/windx5/
H A DSDL_dx5video.c1463 ddsd.ddpfPixelFormat.u2.dwRBitMask,
1464 ddsd.ddpfPixelFormat.u3.dwGBitMask,
1465 ddsd.ddpfPixelFormat.u4.dwBBitMask,
1467 ddsd.ddpfPixelFormat.dwRGBBitCount,
1468 ddsd.ddpfPixelFormat.dwRBitMask,
1469 ddsd.ddpfPixelFormat.dwGBitMask,
1470 ddsd.ddpfPixelFormat.dwBBitMask,
1702 ddsd.ddpfPixelFormat.dwSize = sizeof(ddsd.ddpfPixelFormat);
1703 ddsd.ddpfPixelFormat.dwFlags = DDPF_RGB;
1895 ddsd.ddpfPixelFormat.dwRBitMask,
[all …]
H A DSDL_dx5yuv.c68 ddsd.ddpfPixelFormat.dwSize = sizeof(ddsd.ddpfPixelFormat); in CreateYUVSurface()
69 ddsd.ddpfPixelFormat.dwFlags = DDPF_FOURCC; in CreateYUVSurface()
70 ddsd.ddpfPixelFormat.dwFourCC = format; in CreateYUVSurface()
98 if ( !(ddsd.ddpfPixelFormat.dwFlags & DDPF_FOURCC) || in CreateYUVSurface()
99 (ddsd.ddpfPixelFormat.dwFourCC != format) ) { in CreateYUVSurface()
/dports/games/d2x/d2x-0.2.5/arch/win32/d3dframe/
H A Dd3dtextr.cpp365 if( ddsd.ddpfPixelFormat.dwRGBBitCount == 8 ) in CopyBitmapToSurface()
412 if( ddsd.ddpfPixelFormat.dwRGBBitCount == 8 ) in CopyBitmapToSurface()
428 if( ddsd.ddpfPixelFormat.dwRGBAlphaBitMask ) in CopyBitmapToSurface()
438 DWORD dwAlphaMask = ddsd.ddpfPixelFormat.dwRGBAlphaBitMask; in CopyBitmapToSurface()
439 DWORD dwRGBMask = ( ddsd.ddpfPixelFormat.dwRBitMask | in CopyBitmapToSurface()
440 ddsd.ddpfPixelFormat.dwGBitMask | in CopyBitmapToSurface()
441 ddsd.ddpfPixelFormat.dwBBitMask ); in CopyBitmapToSurface()
454 if( ddsd.ddpfPixelFormat.dwRGBBitCount == 16 ) in CopyBitmapToSurface()
460 if( ddsd.ddpfPixelFormat.dwRGBBitCount == 32 ) in CopyBitmapToSurface()
638 tsi.pddpf = &ddsd.ddpfPixelFormat; in RestoreFromBitmap()
[all …]
H A Dd3denum.cpp71 DWORD dwModeDepth = pddsd->ddpfPixelFormat.dwRGBBitCount; in EnumDisplayModesCallback()
97 ( 16 == pddsd->ddpfPixelFormat.dwRGBBitCount ) ) in EnumDisplayModesCallback()
178 DWORD dwDisplayBPP = ddsd.ddpfPixelFormat.dwRGBBitCount; in Enum3DDevicesCallback()
187 if( pMode->ddsd.ddpfPixelFormat.dwRGBBitCount == dwDisplayBPP ) in Enum3DDevicesCallback()
365 DWORD dwDisplayBPP = ddsd.ddpfPixelFormat.dwRGBBitCount; in RefreshListForDesktopCompatibility()
380 if( pMode->ddsd.ddpfPixelFormat.dwRGBBitCount == dwDisplayBPP ) in RefreshListForDesktopCompatibility()
/dports/games/arx-libertatis/arx-libertatis-1.1.2/src/game/
H A DMap.cpp415 if( (ddsd.ddpfPixelFormat.dwRGBBitCount==4)||
416 (ddsd.ddpfPixelFormat.dwRGBBitCount==8)||
417 (ddsd.ddpfPixelFormat.dwRGBBitCount==24) )
426 if(ddsd.ddpfPixelFormat.dwRGBBitCount==16)
465 DWORD dwRMask=ddsd.ddpfPixelFormat.dwRBitMask;
466 DWORD dwGMask=ddsd.ddpfPixelFormat.dwGBitMask;
467 DWORD dwBMask=ddsd.ddpfPixelFormat.dwBBitMask;
468 DWORD dwAMask=ddsd.ddpfPixelFormat.dwRGBAlphaBitMask;
498 if(ddsd.ddpfPixelFormat.dwRGBBitCount==16)
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/frmts/dds/
H A Dddsdataset.cpp270 if( ddsDesc.ddpfPixelFormat.dwSize != sizeof(crnlib::DDPIXELFORMAT) ) in Open()
273 ddsDesc.ddpfPixelFormat.dwSize); in Open()
277 if( ddsDesc.ddpfPixelFormat.dwFlags != DDPF_FOURCC ) in Open()
281 ddsDesc.ddpfPixelFormat.dwFlags); in Open()
286 switch( ddsDesc.ddpfPixelFormat.dwFourCC ) in Open()
316 memcpy(&szFourCC[0], &ddsDesc.ddpfPixelFormat.dwFourCC, 4); in Open()
608 ddsDesc.ddpfPixelFormat.dwSize = sizeof(crnlib::DDPIXELFORMAT); in CreateCopy()
609 ddsDesc.ddpfPixelFormat.dwFlags = DDPF_FOURCC; in CreateCopy()
610 ddsDesc.ddpfPixelFormat.dwFourCC = crn_get_format_fourcc(fmt); in CreateCopy()
/dports/graphics/gdal/gdal-3.3.3/frmts/dds/
H A Dddsdataset.cpp270 if( ddsDesc.ddpfPixelFormat.dwSize != sizeof(crnlib::DDPIXELFORMAT) ) in Open()
273 ddsDesc.ddpfPixelFormat.dwSize); in Open()
277 if( ddsDesc.ddpfPixelFormat.dwFlags != DDPF_FOURCC ) in Open()
281 ddsDesc.ddpfPixelFormat.dwFlags); in Open()
286 switch( ddsDesc.ddpfPixelFormat.dwFourCC ) in Open()
316 memcpy(&szFourCC[0], &ddsDesc.ddpfPixelFormat.dwFourCC, 4); in Open()
608 ddsDesc.ddpfPixelFormat.dwSize = sizeof(crnlib::DDPIXELFORMAT); in CreateCopy()
609 ddsDesc.ddpfPixelFormat.dwFlags = DDPF_FOURCC; in CreateCopy()
610 ddsDesc.ddpfPixelFormat.dwFourCC = crn_get_format_fourcc(fmt); in CreateCopy()
/dports/graphics/py-gdal/gdal-3.3.3/frmts/dds/
H A Dddsdataset.cpp270 if( ddsDesc.ddpfPixelFormat.dwSize != sizeof(crnlib::DDPIXELFORMAT) ) in Open()
273 ddsDesc.ddpfPixelFormat.dwSize); in Open()
277 if( ddsDesc.ddpfPixelFormat.dwFlags != DDPF_FOURCC ) in Open()
281 ddsDesc.ddpfPixelFormat.dwFlags); in Open()
286 switch( ddsDesc.ddpfPixelFormat.dwFourCC ) in Open()
316 memcpy(&szFourCC[0], &ddsDesc.ddpfPixelFormat.dwFourCC, 4); in Open()
608 ddsDesc.ddpfPixelFormat.dwSize = sizeof(crnlib::DDPIXELFORMAT); in CreateCopy()
609 ddsDesc.ddpfPixelFormat.dwFlags = DDPF_FOURCC; in CreateCopy()
610 ddsDesc.ddpfPixelFormat.dwFourCC = crn_get_format_fourcc(fmt); in CreateCopy()
/dports/multimedia/libxine/xine-lib-1.2.11/src/video_out/
H A Dvideo_out_directx.c355 ddsd.ddpfPixelFormat.dwSize = sizeof(DDPIXELFORMAT); in CreateSecondary()
356 ddsd.ddpfPixelFormat.dwFlags = DDPF_FOURCC; in CreateSecondary()
357 ddsd.ddpfPixelFormat.dwYUVBitCount = 16; in CreateSecondary()
372 ddsd.ddpfPixelFormat.dwFlags = DDPF_FOURCC; in CreateSecondary()
373 ddsd.ddpfPixelFormat.dwYUVBitCount = 16; in CreateSecondary()
389 ddsd.ddpfPixelFormat.dwFlags = DDPF_RGB; in CreateSecondary()
390 ddsd.ddpfPixelFormat.dwYUVBitCount = 24; in CreateSecondary()
391 ddsd.ddpfPixelFormat.dwRBitMask = 0xff0000; in CreateSecondary()
392 ddsd.ddpfPixelFormat.dwGBitMask = 0x00ff00; in CreateSecondary()
393 ddsd.ddpfPixelFormat.dwBBitMask = 0x0000ff; in CreateSecondary()
[all …]
/dports/multimedia/vlc/vlc-3.0.16/modules/video_output/win32/
H A Ddirectdraw.c765 switch (ddsd.ddpfPixelFormat.dwRGBBitCount) { in DirectXFindColorkey()
889 ddsd.ddpfPixelFormat.dwSize = sizeof(ddsd.ddpfPixelFormat); in DirectXCreateSurface()
896 ddsd.ddpfPixelFormat.dwFourCC = fourcc; in DirectXCreateSurface()
1150 DDPIXELFORMAT ddpfPixelFormat; in DirectXCreatePictureResourceRgb() local
1151 ZeroMemory(&ddpfPixelFormat, sizeof(ddpfPixelFormat)); in DirectXCreatePictureResourceRgb()
1152 ddpfPixelFormat.dwSize = sizeof(ddpfPixelFormat); in DirectXCreatePictureResourceRgb()
1155 if ((ddpfPixelFormat.dwFlags & DDPF_RGB) == 0) in DirectXCreatePictureResourceRgb()
1158 switch (ddpfPixelFormat.dwRGBBitCount) { in DirectXCreatePictureResourceRgb()
1178 fmt->i_rmask = ddpfPixelFormat.dwRBitMask; in DirectXCreatePictureResourceRgb()
1179 fmt->i_gmask = ddpfPixelFormat.dwGBitMask; in DirectXCreatePictureResourceRgb()
[all …]
/dports/games/avp/avp-20170505/src/win95/
H A Dawtexld.h402 #define AwSetTextureFormat(_descP) (AwSetTextureFormat2((_descP) ? &(_descP)->ddpfPixelFormat : NUL…
452 …sp, _maxColours) (AwSetAdditionalTextureFormat2((_descP) ? &(_descP->ddpfPixelFormat) : NULL,_maxA…
461 #define AwSetSurfaceFormat(_descP) (AwSetSurfaceFormat2((_descP) ? &(_descP)->ddpfPixelFormat : NUL…
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/plugins_unsupported/render_rfx/plugins/
H A Drfx_dds.cpp359 isCompressed = header.ddpfPixelFormat.dwFlags & DDPF_FOURCC; in ValidateHeader()
385 switch (header.ddpfPixelFormat.dwFourCC) { in GetOGLFormat()
404 if (header.ddpfPixelFormat.dwFlags & DDPF_LUMINANCE) { in GetOGLFormat()
405 if (header.ddpfPixelFormat.dwFlags & DDPF_ALPHAPIXELS) in GetOGLFormat()
410 } else if (header.ddpfPixelFormat.dwFlags & DDPF_RGB) { in GetOGLFormat()
411 if (header.ddpfPixelFormat.dwFlags & DDPF_ALPHAPIXELS) in GetOGLFormat()
420 components = header.ddpfPixelFormat.dwRGBBitCount / 8; in GetOGLFormat()
/dports/games/avp/avp-20170505/src/avp/support/
H A Dtallfont.cpp547 int BytesPerPixel = lpDDSurfaceDesc -> ddpfPixelFormat . dwRGBBitCount /8; in bAnyNonTransparentPixelsInColumn()
578 int R = Pixel & lpDDSurfaceDesc -> ddpfPixelFormat . dwRBitMask; in bAnyNonTransparentPixelsInColumn()
579 int G = Pixel & lpDDSurfaceDesc -> ddpfPixelFormat . dwGBitMask; in bAnyNonTransparentPixelsInColumn()
580 int B = Pixel & lpDDSurfaceDesc -> ddpfPixelFormat . dwBBitMask; in bAnyNonTransparentPixelsInColumn()
1406 int BytesPerPixel = lpDDSurfaceDesc -> ddpfPixelFormat . dwRGBBitCount /8; in bAnyNonTransparentPixelsInColumn()
1433 int R = Pixel & lpDDSurfaceDesc -> ddpfPixelFormat . dwRBitMask; in bAnyNonTransparentPixelsInColumn()
1434 int G = Pixel & lpDDSurfaceDesc -> ddpfPixelFormat . dwGBitMask; in bAnyNonTransparentPixelsInColumn()
1435 int B = Pixel & lpDDSurfaceDesc -> ddpfPixelFormat . dwBBitMask; in bAnyNonTransparentPixelsInColumn()
1671 int BytesPerPixel = lpDDSurfaceDesc -> ddpfPixelFormat . dwRGBBitCount /8; in bOpaque()

12345