HomeSort by relevance Sort by last modified time
    Searched refs:hdc (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /external/chromium_org/printing/
print_settings_initializer_win.cc 15 HDC hdc,
18 DCHECK(hdc);
22 int dpi = GetDeviceCaps(hdc, LOGPIXELSX);
26 (GetDeviceCaps(hdc, SHADEBLENDCAPS) & kAlphaCaps) == kAlphaCaps);
31 DCHECK_EQ(dpi, GetDeviceCaps(hdc, LOGPIXELSY));
33 DCHECK_EQ(GetDeviceCaps(hdc, SCALINGFACTORX), 0);
34 DCHECK_EQ(GetDeviceCaps(hdc, SCALINGFACTORY), 0);
37 gfx::Size physical_size_device_units(GetDeviceCaps(hdc, PHYSICALWIDTH),
38 GetDeviceCaps(hdc, PHYSICALHEIGHT))
    [all...]
print_settings_initializer_win.h 13 typedef struct HDC__* HDC;
23 static void InitPrintSettings(HDC hdc,
image_win.cc 56 // Create a temporary HDC and bitmap to retrieve the rendered data.
57 base::win::ScopedCreateDC hdc(::CreateCompatibleDC(NULL));
71 ::CreateDIBSection(hdc.Get(), reinterpret_cast<BITMAPINFO*>(&hdr), 0,
74 base::win::ScopedSelectObject select_object(hdc.Get(), bitmap);
76 skia::InitializeDC(hdc.Get());
78 bool success = metafile.Playback(hdc.Get(), NULL);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
stw_wgl.h 42 wglSwapBuffers(HDC hdc);
45 wglChoosePixelFormat(HDC hdc,
49 wglDescribePixelFormat(HDC hdc,
55 wglGetPixelFormat(HDC hdc);
58 wglSetPixelFormat(HDC hdc,
66 HDC hdc; member in struct:_WGLSWAP
    [all...]
stw_wgl.c 63 HDC hdc )
65 return (HGLRC) DrvCreateContext(hdc);
70 HDC hdc,
73 return (HGLRC) DrvCreateLayerContext( hdc, iLayerPlane );
90 WINGDIAPI HDC APIENTRY
98 HDC hdc,
101 return DrvSetContext( hdc, (DHGLRC)(UINT_PTR)hglrc, NULL ) ? TRUE : FALSE
    [all...]
stw_ext_extensionsstring.c 48 HDC hdc )
50 if (!hdc) {
stw_pixelformat.h 61 stw_pixelformat_choose( HDC hdc,
65 stw_pixelformat_get(HDC hdc);
stw_context.h 41 HDC hdc; member in struct:stw_context
46 DHGLRC stw_create_context_attribs( HDC hdc, INT iLayerPlane, DHGLRC hShareContext,
51 HDC stw_get_current_dc( void );
53 BOOL stw_make_current( HDC hdc, DHGLRC dhglrc );
stw_st.h 47 stw_st_swap_framebuffer_locked(HDC hdc, struct st_framebuffer_iface *stfb);
stw_framebuffer.h 61 HDC hDC;
112 * Create a new framebuffer object which will correspond to the given HDC.
119 HDC hdc,
138 * Search a framebuffer with a matching HDC.
145 HDC hdc );
148 stw_framebuffer_present_locked(HDC hdc,
    [all...]
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_wgl.h 42 wglSwapBuffers(HDC hdc);
45 wglChoosePixelFormat(HDC hdc,
49 wglDescribePixelFormat(HDC hdc,
55 wglGetPixelFormat(HDC hdc);
58 wglSetPixelFormat(HDC hdc,
66 HDC hdc; member in struct:_WGLSWAP
    [all...]
stw_wgl.c 63 HDC hdc )
65 return (HGLRC) DrvCreateContext(hdc);
70 HDC hdc,
73 return (HGLRC) DrvCreateLayerContext( hdc, iLayerPlane );
90 WINGDIAPI HDC APIENTRY
98 HDC hdc,
101 return DrvSetContext( hdc, (DHGLRC)(UINT_PTR)hglrc, NULL ) ? TRUE : FALSE
    [all...]
stw_ext_extensionsstring.c 48 HDC hdc )
50 if (!hdc) {
stw_pixelformat.h 61 stw_pixelformat_choose( HDC hdc,
65 stw_pixelformat_get(HDC hdc);
stw_context.h 41 HDC hdc; member in struct:stw_context
46 DHGLRC stw_create_context_attribs( HDC hdc, INT iLayerPlane, DHGLRC hShareContext,
51 HDC stw_get_current_dc( void );
53 BOOL stw_make_current( HDC hdc, DHGLRC dhglrc );
stw_st.h 47 stw_st_swap_framebuffer_locked(HDC hdc, struct st_framebuffer_iface *stfb);
stw_framebuffer.h 61 HDC hDC;
112 * Create a new framebuffer object which will correspond to the given HDC.
119 HDC hdc,
138 * Search a framebuffer with a matching HDC.
145 HDC hdc );
148 stw_framebuffer_present_locked(HDC hdc,
    [all...]
  /external/chromium_org/ui/gfx/win/
scoped_set_map_mode.h 18 ScopedSetMapMode(HDC hdc, int map_mode)
19 : hdc_(hdc),
20 old_map_mode_(SetMapMode(hdc, map_mode)) {
32 HDC hdc_;
  /external/chromium_org/base/win/
scoped_select_object.h 19 ScopedSelectObject(HDC hdc, HGDIOBJ object)
20 : hdc_(hdc),
21 oldobj_(SelectObject(hdc, object)) {
34 HDC hdc_;
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/windows/gdi/
wgl.c 154 static HDC CurrentHDC = 0;
157 WINGDIAPI HGLRC GLAPIENTRY wglCreateContext(HDC hdc)
168 WMesaCreateContext(hdc, NULL, (GLboolean)GL_TRUE,
207 WINGDIAPI HDC GLAPIENTRY wglGetCurrentDC(VOID)
212 WINGDIAPI BOOL GLAPIENTRY wglMakeCurrent(HDC hdc, HGLRC hglrc)
216 CurrentHDC = hdc;
218 if (!hdc || !hglrc) {
226 WMesaMakeCurrent( (WMesaContext) hglrc, hdc );
    [all...]
  /external/mesa3d/src/mesa/drivers/windows/gdi/
wgl.c 154 static HDC CurrentHDC = 0;
157 WINGDIAPI HGLRC GLAPIENTRY wglCreateContext(HDC hdc)
168 WMesaCreateContext(hdc, NULL, (GLboolean)GL_TRUE,
207 WINGDIAPI HDC GLAPIENTRY wglGetCurrentDC(VOID)
212 WINGDIAPI BOOL GLAPIENTRY wglMakeCurrent(HDC hdc, HGLRC hglrc)
216 CurrentHDC = hdc;
218 if (!hdc || !hglrc) {
226 WMesaMakeCurrent( (WMesaContext) hglrc, hdc );
    [all...]
  /external/chromium_org/ui/native_theme/
native_theme_win.h 97 HRESULT PaintTextField(HDC hdc,
127 // Paint directly to canvas' HDC.
134 // Create a temporary HDC, paint to that, clean up the alpha values in the
135 // temporary HDC, and then blit the result to canvas. This is to work around
144 HDC hdc,
151 HRESULT PaintButton(HDC hdc,
158 HRESULT PaintMenuSeparator(HDC hdc
    [all...]
native_theme_win.cc 388 HDC hdc = scoped_platform_paint.GetPlatformSurface(); local
392 PaintCheckbox(hdc, part, state, rect, extra.button);
395 PaintSpinButton(hdc, part, state, rect, extra.inner_spin);
398 PaintMenuList(hdc, state, rect, extra.menu_list);
401 PaintMenuCheck(hdc, state, rect, extra.menu_check);
404 PaintMenuCheckBackground(hdc, state, rect);
407 PaintMenuArrow(hdc, state, rect, extra.menu_arrow);
410 PaintMenuBackground(hdc, rect);
413 PaintMenuGutter(hdc, rect)
    [all...]
  /external/chromium_org/third_party/icu/source/samples/layout/
gdiglue.h 26 rs_surface *rs_gdiRenderingSurfaceOpen(HDC hdc);
27 void rs_gdiRenderingSurfaceSetHDC(rs_surface *surface, HDC hdc);
  /external/icu/icu4c/source/samples/layout/
gdiglue.h 26 rs_surface *rs_gdiRenderingSurfaceOpen(HDC hdc);
27 void rs_gdiRenderingSurfaceSetHDC(rs_surface *surface, HDC hdc);

Completed in 847 milliseconds

1 2 3 4 5