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

1 2 3 4 5

  /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
gdiglue.cpp 37 rs_surface *rs_gdiRenderingSurfaceOpen(HDC hdc)
39 return (rs_surface *) new GDISurface(hdc);
42 void rs_gdiRenderingSurfaceSetHDC(rs_surface *surface, HDC hdc)
46 rs->setHDC(hdc);
  /external/webkit/JavaScriptCore/wtf/
OwnPtrCommon.h 33 typedef struct HDC__* HDC;
52 void deleteOwnedPtr(HDC);
OwnPtrWin.cpp 46 void deleteOwnedPtr(HDC ptr)
  /external/webkit/WebCore/platform/win/
PlatformScrollBar.h 33 typedef struct HDC__* HDC;
DragImageCairoWin.cpp 51 HBITMAP allocImage(HDC dc, IntSize size, CairoContextRef* targetRef)
118 HDC dc = GetDC(0);
119 HDC dstDC = CreateCompatibleDC(dc);
158 HDC dc = GetDC(0);
159 HDC workingDC = CreateCompatibleDC(dc);
DragImageCGWin.cpp 46 HBITMAP allocImage(HDC dc, IntSize size, CGContextRef *targetRef)
96 HDC dc = GetDC(0);
97 HDC dstDC = CreateCompatibleDC(dc);
130 HDC dc = GetDC(0);
131 HDC workingDC = CreateCompatibleDC(dc);
  /external/webkit/WebCore/platform/graphics/skia/
SkiaFontWin.h 47 static const SkPath* lookupOrCreatePathForGlyph(HDC, HFONT, WORD);
  /external/chromium/base/
scoped_handle_win.h 109 // Like ScopedHandle but for HDC. Only use this on HDCs returned from
110 // CreateCompatibleDC. For an HDC returned by GetDC, use ReleaseDC instead.
114 explicit ScopedHDC(HDC h) : hdc_(h) { }
120 HDC Get() {
124 void Set(HDC h) {
129 operator HDC() { return hdc_; }
141 HDC hdc_;
  /external/webkit/WebKitTools/WinLauncher/
PrintWebUIDelegate.cpp 87 HDC dc = ::GetDC(0);
103 HDC dc = ::GetDC(0);
119 HDC dc = ::GetDC(0);
139 HDC dc = reinterpret_cast<HDC>(drawingContext);
172 HDC dc = reinterpret_cast<HDC>(drawingContext);
  /external/qemu/distrib/sdl-1.2.12/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,
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
d3drmwin.h 41 STDMETHOD(HandlePaint)(THIS_ HDC hdc) PURE;
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
D3DRMWIN.H 41 STDMETHOD(HandlePaint)(THIS_ HDC hdc) PURE;
  /external/webkit/WebCore/platform/graphics/chromium/
IconChromiumWin.cpp 67 HDC hdc = context->platformContext()->canvas()->beginPlatformPaint();
68 DrawIconEx(hdc, rect.x(), rect.y(), m_icon, rect.width(), rect.height(), 0, 0, DI_NORMAL);
SimpleFontDataChromiumWin.cpp 56 HDC dc = GetDC(0);
132 HDC dc = GetDC(0);
156 HDC dc = GetDC(0);
  /external/webkit/JavaScriptCore/wtf/wince/
MemoryManager.h 25 typedef struct HDC__* HDC;
39 static HBITMAP createCompatibleBitmap(HDC hdc, int width, int height);
  /external/webkit/WebCore/platform/graphics/win/
SimpleFontDataWin.cpp 68 HDC hdc = GetDC(0); local
69 HGDIOBJ oldFont = SelectObject(hdc, m_platformData.hfont());
71 GetOutlineTextMetrics(hdc, sizeof(metrics), &metrics);
83 DWORD len = GetGlyphOutline(hdc, 'x', GGO_METRICS, &gm, 0, 0, &mat);
89 SelectObject(hdc, oldFont);
90 ReleaseDC(0, hdc);
137 HDC dc = GetDC(0);
168 HDC dc = GetDC(0);
184 HDC hdc = GetDC(0) local
    [all...]
GraphicsContextCairoWin.cpp 39 static cairo_t* createCairoContextWithHDC(HDC hdc, bool hasAlpha)
41 // Put the HDC In advanced mode so it will honor affine transforms.
42 SetGraphicsMode(hdc, GM_ADVANCED);
46 HBITMAP bitmap = static_cast<HBITMAP>(GetCurrentObject(hdc, OBJ_BITMAP));
50 surface = cairo_win32_surface_create(hdc);
67 GraphicsContext::GraphicsContext(HDC dc, bool hasAlpha)
87 void GraphicsContext::releaseWindowsContext(HDC hdc, const IntRect& dstRect, bool supportAlphaBlend, bool mayCreateBitmap)
89 if (!mayCreateBitmap || !hdc || !inTransparencyLayer())
    [all...]
GlyphPageTreeNodeCairoWin.cpp 45 HDC dc = GetDC((HWND)0);
  /external/webkit/WebCore/platform/graphics/
GraphicsContext.h 99 typedef struct HDC__* HDC;
357 HDC getWindowsContext(const IntRect&, bool supportAlphaBlend = false, bool mayCreateBitmap = true); // The passed in rect is used to create a bitmap for compositing inside transparency layers.
358 void releaseWindowsContext(HDC, const IntRect&, bool supportAlphaBlend = false, bool mayCreateBitmap = true); // The passed in HDC should be the one handed back by getWindowsContext.
359 void drawRoundCorner(bool newClip, RECT clipRect, RECT rectWin, HDC dc, int width, int height);
361 GraphicsContext(HDC, bool hasAlpha = false); // FIXME: To be removed.
363 HDC getWindowsContext(const IntRect&, bool supportAlphaBlend = true, bool mayCreateBitmap = true); // The passed in rect is used to create a bitmap for compositing inside transparency layers.
364 void releaseWindowsContext(HDC, const IntRect&, bool supportAlphaBlend = true, bool mayCreateBitmap = true); // The passed in HDC should be the one handed back by getWindowsContext.
379 WindowsBitmap(HDC, IntSize)
382 HDC hdc() const { return m_hdc; } function in class:WebCore::GraphicsContext::WindowsBitmap
    [all...]
  /development/ndk/platforms/android-9/include/EGL/
eglplatform.h 71 typedef HDC EGLNativeDisplayType;
  /external/webkit/WebCore/platform/graphics/cg/
GraphicsContextPlatformPrivateCG.h 69 // On Windows, we need to update the HDC for form controls to draw in the right place.
82 HDC m_hdc;
  /frameworks/base/opengl/include/EGL/
eglplatform.h 71 typedef HDC EGLNativeDisplayType;
  /external/quake/quake/src/QW/scitech/include/
mglwin.h 33 typedef HDC MGL_HDC;
104 /* Get a Windows HDC for the MGL device context. You can use this returned
105 * HDC to get GDI to draw to the device context surface, such as rendering
106 * and using TrueType fonts with the MGL. If a Windows compatible HDC is not
110 HDC MGLAPI MGL_getWinDC(MGLDC *dc);
114 bool MGLAPI MGL_setWinDC(MGLDC *dc,MGL_HDC hdc);

Completed in 1331 milliseconds

1 2 3 4 5