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

1 2 3 4

  /external/strace/qemu_multiarch_testing/
make-hdc-img.sh 4 [ ! -e hdc.img.dir ]
9 if mountpoint -q hdc.img.dir; then
10 umount -d hdc.img.dir
12 mountpoint -q hdc.img.dir ||
13 rm -rf hdc.img.dir
20 size=$(du -ks hdc.dir | sed -rn 's/^([0-9]+).*/\1/p')
23 rm -f hdc.img
24 dd if=/dev/zero of=hdc.img count=1 bs=1024 seek=$(($size*2))
25 mkfs.ext3 -q -F -b 1024 -i 4096 hdc.img
26 tune2fs -c 0 -i 0 hdc.im
    [all...]
parallel-build-hdc-img.sh 10 nice -n10 time ./native-build.sh ../hdc.img
  /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...]
stw_framebuffer.c 95 ReleaseDC(fb->hWnd, fb->hDC);
241 HDC hdc,
249 hWnd = WindowFromDC( hdc );
257 /* Applications use, create, destroy device contexts, so the hdc passed is. We create our own DC
260 fb->hDC = GetDC(hWnd);
387 * Given an hdc, return the corresponding stw_framebuffer.
391 HDC hdc )
395 hwnd = WindowFromDC(hdc);
    [all...]
  /external/libchrome/base/win/
scoped_select_object.h 19 ScopedSelectObject(HDC hdc, HGDIOBJ object)
20 : hdc_(hdc),
21 oldobj_(SelectObject(hdc, object)) {
34 HDC hdc_;
  /external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/jni-headers/win32/
jawt_md.h 30 * This HDC should always be used instead of the HDC returned from
33 HDC hdc; member in struct:jawt_Win32DrawingSurfaceInfo
  /external/libgdx/extensions/gdx-bullet/jni/jni-headers/win32/
jawt_md.h 30 * This HDC should always be used instead of the HDC returned from
33 HDC hdc; member in struct:jawt_Win32DrawingSurfaceInfo
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-desktop/jni/jni-headers/win32/
jawt_md.h 30 * This HDC should always be used instead of the HDC returned from
33 HDC hdc; member in struct:jawt_Win32DrawingSurfaceInfo
  /external/libgdx/extensions/gdx-freetype/jni/jni-headers/win32/
jawt_md.h 30 * This HDC should always be used instead of the HDC returned from
33 HDC hdc; member in struct:jawt_Win32DrawingSurfaceInfo
  /external/libgdx/extensions/gdx-jnigen/src/com/badlogic/gdx/jnigen/resources/headers/win32/
jawt_md.h 30 * This HDC should always be used instead of the HDC returned from
33 HDC hdc; member in struct:jawt_Win32DrawingSurfaceInfo
  /external/libgdx/gdx/jni/jni-headers/win32/
jawt_md.h 30 * This HDC should always be used instead of the HDC returned from
33 HDC hdc; member in struct:jawt_Win32DrawingSurfaceInfo
  /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/icu/icu4c/source/samples/layout/
gdiglue.h 26 rs_surface *rs_gdiRenderingSurfaceOpen(HDC hdc);
27 void rs_gdiRenderingSurfaceSetHDC(rs_surface *surface, HDC hdc);
GDIFontInstance.cpp 24 GDISurface::GDISurface(HDC theHDC)
35 void GDISurface::setHDC(HDC theHDC)
113 HDC hdc = surface->getHDC(); local
119 SaveDC(hdc);
121 SetGraphicsMode(hdc, GM_ADVANCED);
122 ModifyWorldTransform(hdc, NULL, MWT_IDENTITY);
123 SetViewportOrgEx(hdc, 0, 0, NULL);
124 SetWindowOrgEx(hdc, 0, 0, NULL);
126 dpiX = (FLOAT) GetDeviceCaps(hdc, LOGPIXELSX)
198 HDC hdc = surface->getHDC(); local
344 HDC hdc = fSurface->getHDC(); local
370 HDC hdc = fSurface->getHDC(); local
    [all...]
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/mesa3d/src/gallium/state_trackers/d3d1x/winedlls/dxgi/
dxgi_dll.c 72 HDC hdc; local
84 hdc = GetDC(hwnd);
85 GetDCOrgEx(hdc, &hwnd_origin_from_screen);
87 GetRandomRgn(hdc, hrgn, SYSRGN);
95 ReleaseDC(hwnd, hdc);
110 hdc = GetDC(x11_hwnd);
111 ExtEscape(hdc, X11DRV_ESCAPE, sizeof(code), (LPSTR)&code, sizeof(drawable), (LPTSTR)&drawable);
113 GetDCOrgEx(hdc, &x11_hwnd_origin_from_screen);
114 ReleaseDC(x11_hwnd, hdc);
147 HDC hdc; local
235 HDC hdc; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
ntgdi.h 17 W32KAPI int WINAPI NtGdiSetDIBitsToDeviceInternal(HDC hdcDest,int xDst,int yDst,DWORD cx,DWORD cy,int xSrc,int ySrc,DWORD iStartScan,DWORD cNumScan,LPBYTE pInitBits,LPBITMAPINFO pbmi,DWORD iUsage,UINT cjMaxBits,UINT cjMaxInfo,WINBOOL bTransformCoordinates,HANDLE hcmXform);
19 W32KAPI DWORD WINAPI NtGdiGetGlyphIndicesW(HDC hdc,LPWSTR pwc,int cwc,LPWORD pgi,DWORD iMode);
20 W32KAPI DWORD WINAPI NtGdiGetGlyphIndicesWInternal(HDC hdc,LPWSTR pwc,int cwc,LPWORD pgi,DWORD iMode,WINBOOL bSubset);
22 W32KAPI WINBOOL WINAPI NtGdiArcInternal(ARCTYPE arctype,HDC hdc,int x1,int y1,int x2,int y2,int x3,int y3,int x4,int y4);
23 W32KAPI int WINAPI NtGdiStretchDIBitsInternal(HDC hdc,int xDst,int yDst,int cxDst,int cyDst,int xSrc,int ySrc,int cxSrc,int cySrc,LPBYTE pjInit,LPBITMAPINFO pbmi,DWORD dwUsage,DWORD dwRop4,UINT cjMaxInfo,UINT cjMaxBits,HANDLE hcmXform);
24 W32KAPI ULONG WINAPI NtGdiGetOutlineTextMetricsInternalW(HDC hdc,ULONG cjotm,OUTLINETEXTMETRICW *potmw,TMDIFF *ptmd)
    [all...]
dciman.h 18 extern HDC WINAPI DCIOpenProvider(void);
19 extern void WINAPI DCICloseProvider(HDC hdc);
21 extern int WINAPI DCICreatePrimary(HDC hdc,LPDCISURFACEINFO *lplpSurface);
22 extern int WINAPI DCICreateOffscreen(HDC hdc,DWORD dwCompression,DWORD dwRedMask,DWORD dwGreenMask,DWORD dwBlueMask,DWORD dwWidth,DWORD dwHeight,DWORD dwDCICaps,DWORD dwBitCount,LPDCIOFFSCREEN *lplpSurface);
23 extern int WINAPI DCICreateOverlay(HDC hdc,LPVOID lpOffscreenSurf,LPDCIOVERLAY *lplpSurface);
24 extern int WINAPI DCIEnum(HDC hdc,LPRECT lprDst,LPRECT lprSrc,LPVOID lpFnCallback,LPVOID lpContext)
    [all...]
  /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);

Completed in 634 milliseconds

1 2 3 4