/reactos/modules/rostests/apitests/win32nt/ntgdi/ |
H A D | NtGdiCreateDIBSection.c | 215 TEST(dibsection.dsBm.bmType == 0); in START_TEST() 216 TEST(dibsection.dsBm.bmWidth == 2); in START_TEST() 217 TEST(dibsection.dsBm.bmHeight == 2); in START_TEST() 218 TEST(dibsection.dsBm.bmWidthBytes == 4); in START_TEST() 219 TEST(dibsection.dsBm.bmPlanes == 1); in START_TEST() 220 TEST(dibsection.dsBm.bmBitsPixel == 16); in START_TEST() 221 TEST(dibsection.dsBm.bmBits == pvBits); in START_TEST()
|
/reactos/dll/win32/uxtheme/ |
H A D | pngsup.cpp | 73 if (dib.dsBm.bmBitsPixel != 32) in prepare_png_alpha() 77 p = (BYTE*)dib.dsBm.bmBits; in prepare_png_alpha()
|
H A D | msstyles.c | 874 if(dib.dsBm.bmBitsPixel != 32) in prepare_alpha() 878 p = dib.dsBm.bmBits; in prepare_alpha()
|
H A D | draw.c | 1754 *pRegion = UXTHEME_RegionFromDibBits((RGBQUAD*)dib.dsBm.bmBits, &clrTransparent, pRect); in UXTHEME_GetImageBackBackgroundRegion()
|
/reactos/win32ss/user/user32/windows/ |
H A D | cursoricon.c | 1704 if (desiredx == 0) desiredx = ds.dsBm.bmWidth; in BITMAP_CopyImage() 1705 if (desiredy == 0) desiredy = ds.dsBm.bmHeight; in BITMAP_CopyImage() 1715 bi->bmiHeader.biPlanes = ds.dsBm.bmPlanes; in BITMAP_CopyImage() 1716 bi->bmiHeader.biBitCount = ds.dsBm.bmBitsPixel; in BITMAP_CopyImage() 1752 bi->bmiHeader.biWidth = ds.dsBm.bmWidth; in BITMAP_CopyImage() 1753 bi->bmiHeader.biHeight = ds.dsBm.bmHeight; in BITMAP_CopyImage() 1783 monochrome = ds.dsBm.bmBitsPixel == 1; in BITMAP_CopyImage() 1814 copyContents = (ds.dsBm.bmBitsPixel == 1 || ds.dsBm.bmBitsPixel == screen_depth); in BITMAP_CopyImage() 1827 bi->bmiHeader.biWidth = ds.dsBm.bmWidth; in BITMAP_CopyImage() 1828 bi->bmiHeader.biHeight = ds.dsBm.bmHeight; in BITMAP_CopyImage() [all …]
|
/reactos/win32ss/gdi/ntgdi/ |
H A D | bitmaps.c | 334 Bpp ? Bpp : dibs.dsBm.bmBitsPixel, in IntCreateCompatibleBitmap() 801 pds->dsBmih.biWidth = pds->dsBm.bmWidth; in BITMAP_GetObject() 802 pds->dsBmih.biHeight = pds->dsBm.bmHeight; in BITMAP_GetObject() 803 pds->dsBmih.biPlanes = pds->dsBm.bmPlanes; in BITMAP_GetObject() 804 pds->dsBmih.biBitCount = pds->dsBm.bmBitsPixel; in BITMAP_GetObject()
|
/reactos/dll/win32/wing32/ |
H A D | wing32.c | 76 return ds.dsBm.bmBits; in WinGGetDIBPointer()
|
/reactos/modules/rostests/winetests/gdi32/ |
H A D | bitmap.c | 330 ok(ds.dsBm.bmBits == bits, "wrong bm.bmBits %p != %p\n", ds.dsBm.bmBits, bits); in test_dib_info() 332 ok(ds.dsBmih.biSizeImage == ds.dsBm.bmWidthBytes * ds.dsBm.bmHeight, "%u != %u\n", in test_dib_info() 333 ds.dsBmih.biSizeImage, ds.dsBm.bmWidthBytes * ds.dsBm.bmHeight); in test_dib_info() 351 ok(ret == sizeof(ds.dsBm), "wrong size %d\n", ret); in test_dib_info() 354 ok(ds.dsBm.bmBits == bits, "%p != %p\n", ds.dsBm.bmBits, bits); in test_dib_info() 482 ok(dibsec.dsBm.bmBits == bits, "dibsec.dsBits %p != bits %p\n", dibsec.dsBm.bmBits, bits); in test_dibsections() 5816 test_data[i].name, dib.dsBm.bmType); in test_D3DKMTCreateDCFromMemory() 5818 test_data[i].name, dib.dsBm.bmWidth); in test_D3DKMTCreateDCFromMemory() 5820 test_data[i].name, dib.dsBm.bmHeight); in test_D3DKMTCreateDCFromMemory() 5825 test_data[i].name, dib.dsBm.bmPlanes); in test_D3DKMTCreateDCFromMemory() [all …]
|
H A D | brush.c | 155 ok( ret == sizeof(dib.dsBm), "wrong size %u\n", ret ); in test_pattern_brush()
|
H A D | generated.c | 567 TEST_FIELD_SIZE (DIBSECTION, dsBm, 32) in test_pack_DIBSECTION() 568 TEST_FIELD_ALIGN (DIBSECTION, dsBm, 8) in test_pack_DIBSECTION() 569 TEST_FIELD_OFFSET(DIBSECTION, dsBm, 0) in test_pack_DIBSECTION() 7090 TEST_FIELD_SIZE (DIBSECTION, dsBm, 24) in test_pack_DIBSECTION() 7091 TEST_FIELD_ALIGN (DIBSECTION, dsBm, 4) in test_pack_DIBSECTION() 7092 TEST_FIELD_OFFSET(DIBSECTION, dsBm, 0) in test_pack_DIBSECTION()
|
/reactos/win32ss/gdi/gdi32/objects/ |
H A D | bitmap.c | 391 if (pDIBs->dsBm.bmBitsPixel <= 8) in CreateCompatibleBitmap()
|
/reactos/dll/win32/riched20/ |
H A D | richole.c | 5784 pSize->cx = dibsect.dsBm.bmWidth; in ME_GetOLEObjectSize() 5785 pSize->cy = dibsect.dsBm.bmHeight; in ME_GetOLEObjectSize() 5853 sz.cx = dibsect.dsBm.bmWidth; in ME_DrawOLE() 5854 sz.cy = dibsect.dsBm.bmHeight; in ME_DrawOLE() 5862 hMemDC, 0, 0, dibsect.dsBm.bmWidth, dibsect.dsBm.bmHeight, SRCCOPY); in ME_DrawOLE()
|
/reactos/dll/win32/comctl32/ |
H A D | imagelist.c | 2226 else color = dib.dsBm.bmBitsPixel; in ImageList_LoadImageW() 2237 cx = dib.dsBm.bmHeight; in ImageList_LoadImageW() 2240 nImageCount = dib.dsBm.bmWidth / cx; in ImageList_LoadImageW() 2243 himl = ImageList_Create (cx, dib.dsBm.bmHeight, color, nImageCount, cGrow); in ImageList_LoadImageW()
|
/reactos/sdk/lib/atl/ |
H A D | atlimage.h | 1129 BITMAP& bm = ds.dsBm; in AttachInternal()
|
/reactos/win32ss/gdi/gdi32/wine/ |
H A D | emfdc.c | 139 BITMAP bmp = dib.dsBm; in get_bitmap_info()
|
/reactos/sdk/include/psdk/ |
H A D | wingdi.h | 1669 BITMAP dsBm; member
|