HomeSort by relevance Sort by last modified time
    Searched refs:HDC (Results 26 - 50 of 243) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium_org/third_party/WebKit/Source/platform/win/
HWndDC.h 60 HDC setHWnd(HWND hwnd)
77 operator HDC()
84 HDC m_hdc;
  /external/chromium_org/third_party/mesa/src/include/GL/
wmesa.h 81 * hDC - Windows device or memory context
94 extern WMesaContext WMesaCreateContext(HDC hDC,HPALETTE* pPal,
110 extern void WMesaMakeCurrent( WMesaContext ctx, HDC hdc );
123 extern void WMesaSwapBuffers(HDC hdc);
  /external/chromium_org/ui/gfx/
gdi_util.h 43 GFX_EXPORT double CalculatePageScale(HDC dc, int page_width, int page_height);
46 GFX_EXPORT bool ScaleDC(HDC dc, double scale_factor);
48 GFX_EXPORT void StretchDIBits(HDC hdc,
color_profile_win.cc 15 HDC screen_dc = GetDC(NULL);
  /external/chromium_org/ui/gl/
gl_surface_wgl.h 23 static HDC GetDisplayDC();
46 HDC device_context_;
68 HDC device_context_;
  /external/mesa3d/include/GL/
wmesa.h 81 * hDC - Windows device or memory context
94 extern WMesaContext WMesaCreateContext(HDC hDC,HPALETTE* pPal,
110 extern void WMesaMakeCurrent( WMesaContext ctx, HDC hdc );
123 extern void WMesaSwapBuffers(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/printing/
emf_win.h 33 // Simple wrapper class that manage an EMF data stream and its virtual HDC.
40 // Generates a virtual HDC that will record every GDI commands and compile
85 virtual HDC context() const OVERRIDE {
89 virtual bool Playback(HDC hdc, const RECT* rect) const OVERRIDE;
90 virtual bool SafePlayback(HDC hdc) const OVERRIDE;
116 static int CALLBACK SafePlaybackProc(HDC hdc,
125 // Valid when generating EMF data through a virtual HDC
138 HDC hdc; member in struct:printing::Emf::EnumerationContext
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/wgl/
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_winsys.h 31 #include <windows.h> /* for HDC */
53 HDC hDC );
  /external/icu4c/samples/layout/
gdiglue.h 26 rs_surface *rs_gdiRenderingSurfaceOpen(HDC hdc);
27 void rs_gdiRenderingSurfaceSetHDC(rs_surface *surface, HDC hdc);
GDIFontInstance.h 31 GDISurface(HDC theHDC);
38 HDC getHDC() const;
39 void setHDC(HDC theHDC);
42 HDC fHdc;
46 inline HDC GDISurface::getHDC() const
  /external/mesa3d/src/gallium/state_trackers/wgl/
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_winsys.h 31 #include <windows.h> /* for HDC */
53 HDC hDC );
  /sdk/emulator/opengl/host/include/libOpenglRender/
render_api_platform_types.h 23 typedef HDC FBNativeDisplayType;
  /external/chromium_org/skia/ext/
platform_device.h 37 typedef HDC PlatformSurface;
67 SK_API void InitializeDC(HDC context);
130 static bool LoadPathToDC(HDC context, const SkPath& path);
133 static void LoadClippingRegionToDC(HDC context, const SkRegion& region,
160 static void LoadTransformToDC(HDC dc, const SkMatrix& matrix);
bitmap_platform_device_win.h 57 virtual void DrawToNativeContext(HDC dc, int x, int y,
60 // Loads the given transform and clipping region into the HDC. This is
89 HDC hdc_;
105 HDC GetBitmapDC();
  /external/chromium_org/content/browser/renderer_host/
backing_store_win.h 21 HDC hdc() { return hdc_; } function in class:content::BackingStoreWin
44 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/third_party/libjingle/source/talk/base/
win32windowpicker.h 26 HDC hdc_monitor,
  /external/qemu/distrib/sdl-1.2.15/src/video/wincommon/
SDL_wingl_c.h 34 HDC GL_hdc;
41 HGLRC (WINAPI *wglCreateContext)(HDC hdc);
45 BOOL (WINAPI *wglMakeCurrent)(HDC hdc, HGLRC hglrc);
47 BOOL (WINAPI *wglGetPixelFormatAttribivARB)(HDC hdc, int iPixelFormat,
  /sdk/emulator/opengl/host/libs/Translator/include/EGL/
eglplatform.h 71 typedef HDC EGLNativeDisplayType;

Completed in 505 milliseconds

12 3 4 5 6 7 8 910