Home | History | Annotate | Download | only in gfx

Lines Matching defs:dib

174   // We start by creating a DIB which we'll use later on in order to create
177 // alpha mask for the DIB.
182 HBITMAP dib;
186 dib = ::CreateDIBSection(hdc, reinterpret_cast<BITMAPINFO*>(&bitmap_header),
189 if (!dib || !bits)
228 icon_info.hbmColor = dib;
230 ::DeleteObject(dib);
383 // Now we should create a DIB so that we can use ::DrawIconEx in order to
389 HBITMAP dib = ::CreateDIBSection(hdc, reinterpret_cast<BITMAPINFO*>(&h),
391 DCHECK(dib);
395 HGDIOBJ old_obj = ::SelectObject(dib_dc, dib);
412 // We start by drawing the AND mask into our DIB.
446 ::DeleteObject(dib);