Searched defs:hBitmap (Results 1 - 10 of 10) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_IconCursor.cpp36 HBITMAP hBitmap; local
79 hBitmap = CreateDIBitmap(hDC,
89 return hBitmap;
H A Dawt_BitmapUtil.cpp101 HBITMAP hBitmap; local
144 hBitmap = CreateDIBitmap(hDC,
154 return hBitmap;
178 HBITMAP hBitmap = local
200 return hBitmap;
226 HRGN BitmapUtil::BitmapToRgn(HBITMAP hBitmap) argument
229 ::SelectObject(hdc, hBitmap);
236 BOOL r = ::GetDIBits(hdc, hBitmap, 0, 0, NULL,
250 ::GetDIBits(hdc, hBitmap, 0, height, buf,
H A Dawt_TrayIcon.cpp644 HBITMAP hBitmap; local
693 hBitmap = CreateDIBitmap(hDC,
703 return hBitmap;
H A Dawt_Window.cpp133 HBITMAP hBitmap; member in struct:UpdateWindowStruct
2672 void AwtWindow::UpdateWindowImpl(int width, int height, HBITMAP hBitmap) argument
2681 HBITMAP hOldBitmap = (HBITMAP)::SelectObject(hdcSrc, hBitmap);
2724 HBITMAP hBitmap; local
2729 hBitmap = CreateBitmapFromRaster(env, data, width, height);
2730 if (hBitmap == NULL) {
2734 hBitmap = hNewBitmap;
2739 hContentBitmap = hBitmap;
2742 UpdateWindowImpl(width, height, hBitmap);
3001 uws->hBitmap);
3591 AwtWindow_UpdateWindow(JNIEnv *env, jobject peer, jint width, jint height, HBITMAP hBitmap) argument
[all...]
H A Dawt_Component.cpp4615 HBITMAP hBitmap = BitmapUtil::CreateARGBBitmap(size.cx, size.cy, &bitmapBits); local
4616 HBITMAP hOldBitmap = (HBITMAP)::SelectObject(hMemoryDC, hBitmap);
4655 ::GetDIBits(hMemoryDC, hBitmap, 0, size.cy, (LPVOID)pixels, &bmi,
4661 VERIFY(::DeleteObject(hBitmap));
/openjdk7/jdk/src/windows/native/sun/awt_common/
H A Dawt_makecube.cpp158 HBITMAP hBitmap = CreateDIBitmap(hDC, &bmInfo, local
161 SelectObject(hDC, hBitmap);
/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DSurfaceData.cpp568 HBITMAP hBitmap = NULL; local
616 hBitmap =
622 RETURN_STATUS_IF_NULL(hBitmap, JNI_FALSE);
624 window->UpdateWindow(env, NULL, w, h, hBitmap);
626 // hBitmap is released in UpdateWindow
/openjdk7/jdk/src/windows/native/sun/java2d/opengl/
H A DWGLSurfaceData.c50 jint w, jint h, HBITMAP hBitmap);
587 HBITMAP hBitmap = NULL; local
639 hBitmap = BitmapUtil_CreateBitmapFromARGBPre(w, h, scanStride,
643 if (hBitmap == NULL) {
647 AwtWindow_UpdateWindow(env, peer, w, h, hBitmap);
649 // hBitmap is released in UpdateWindow
/openjdk7/jdk/src/windows/native/sun/awt/splashscreen/
H A Dsplashscreen_sys.c223 HBITMAP hBitmap, hOldBitmap; local
246 hBitmap = CreateDIBSection(NULL, (BITMAPINFO *) & bmi, DIB_RGB_COLORS,
250 hOldBitmap = (HBITMAP) SelectObject(hdcSrc, hBitmap);
266 DeleteObject(hBitmap);
/openjdk7/jdk/src/windows/native/sun/font/
H A Dlcdglyph.c157 if (hBitmap != 0) { \
158 DeleteObject(hBitmap); \
198 HBITMAP hBitmap = NULL, hOrigBM; local
333 hBitmap = CreateCompatibleBitmap(hDesktopDC, bmWidth, bmHeight);
334 if (hBitmap == NULL) {
337 hOrigBM = (HBITMAP)SelectObject(hMemoryDC, hBitmap);
385 err = GetDIBits(hMemoryDC, hBitmap, 0, height, dibImage,
480 DeleteObject(hBitmap);

Completed in 66 milliseconds