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

1 2 3 4 5

  /external/chromium_org/printing/
print_settings_initializer_win.cc 15 HDC hdc,
21 DCHECK(hdc);
30 int dpi = GetDeviceCaps(hdc, LOGPIXELSX);
34 (GetDeviceCaps(hdc, SHADEBLENDCAPS) & kAlphaCaps) == kAlphaCaps);
39 DCHECK_EQ(dpi, GetDeviceCaps(hdc, LOGPIXELSY));
41 DCHECK_EQ(GetDeviceCaps(hdc, SCALINGFACTORX), 0);
42 DCHECK_EQ(GetDeviceCaps(hdc, SCALINGFACTORY), 0);
45 gfx::Size physical_size_device_units(GetDeviceCaps(hdc, PHYSICALWIDTH),
46 GetDeviceCaps(hdc, PHYSICALHEIGHT))
    [all...]
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, reinterpret_cast<BITMAPINFO*>(&hdr), 0,
74 base::win::ScopedSelectObject select_object(hdc, bitmap);
76 skia::InitializeDC(hdc);
78 bool success = metafile.Playback(hdc, 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/base/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 94 HRESULT PaintTextField(HDC hdc,
124 // Paint directly to canvas' HDC.
131 // Create a temporary HDC, paint to that, clean up the alpha values in the
132 // temporary HDC, and then blit the result to canvas. This is to work around
141 HDC hdc,
148 HRESULT PaintButton(HDC hdc,
155 HRESULT PaintMenuSeparator(HDC hdc
    [all...]
  /external/chromium_org/third_party/skia/include/utils/
SkWGL.h 70 bool hasExtension(HDC dc, const char* ext) const;
72 const char* getExtensionsString(HDC hdc) const;
73 BOOL choosePixelFormat(HDC hdc, const int*, const FLOAT*, UINT, int*, UINT*) const;
74 BOOL getPixelFormatAttribiv(HDC, int, int, UINT, const int*, int*) const;
75 BOOL getPixelFormatAttribfv(HDC hdc, int, int, UINT, const int*, FLOAT*) const;
76 HGLRC createContextAttribs(HDC, HGLRC, const int *) const;
93 HDC dc
    [all...]
  /external/skia/include/utils/
SkWGL.h 70 bool hasExtension(HDC dc, const char* ext) const;
72 const char* getExtensionsString(HDC hdc) const;
73 BOOL choosePixelFormat(HDC hdc, const int*, const FLOAT*, UINT, int*, UINT*) const;
74 BOOL getPixelFormatAttribiv(HDC, int, int, UINT, const int*, int*) const;
75 BOOL getPixelFormatAttribfv(HDC hdc, int, int, UINT, const int*, FLOAT*) const;
76 HGLRC createContextAttribs(HDC, HGLRC, const int *) const;
93 HDC dc
    [all...]
  /external/chromium_org/content/renderer/pepper/
pepper_truetype_font_win.cc 40 DWORD GetFontData(HDC hdc,
129 base::win::ScopedCreateDC hdc(::CreateCompatibleDC(NULL));
130 if (hdc) {
131 base::win::ScopedSelectObject select_object(hdc, font_);
133 GetTextFace(hdc, LF_FACESIZE, name);
139 DWORD PepperTrueTypeFontWin::GetFontData(HDC hdc,
148 DWORD result = ::GetFontData(hdc, table, offset, buffer, length);
160 result = ::GetFontData(hdc, table, offset, buffer, length)
    [all...]
  /external/icu4c/samples/layout/
gdiglue.h 26 rs_surface *rs_gdiRenderingSurfaceOpen(HDC hdc);
27 void rs_gdiRenderingSurfaceSetHDC(rs_surface *surface, HDC hdc);

Completed in 370 milliseconds

1 2 3 4 5