HomeSort by relevance Sort by last modified time
    Searched defs:hDC (Results 1 - 12 of 12) sorted by null

  /external/mesa3d/src/gallium/targets/graw-gdi/
graw_gdi.c 73 HDC hDC = NULL;
115 hDC = GetDC(hWnd);
116 if (hDC == NULL)
119 *handle = (void *)hDC;
  /external/ImageMagick/coders/
screenshot.c 128 HDC
130 hDC;
162 hDC=CreateDC(device.DeviceName,device.DeviceName,NULL,NULL);
163 if (hDC == (HDC) NULL)
167 screen->columns=(size_t) GetDeviceCaps(hDC,HORZRES);
168 screen->rows=(size_t) GetDeviceCaps(hDC,VERTRES);
178 bitmapDC=CreateCompatibleDC(hDC);
179 if (bitmapDC == (HDC) NULL)
181 DeleteDC(hDC);
    [all...]
emf.c 324 HDC
325 hDC;
397 hDC=GetDC(NULL);
398 hTemp=SetWinMetaFileBits(dwSize,pBits,hDC,&mp);
399 ReleaseDC(NULL,hDC);
439 hDC=GetDC(NULL);
440 hTemp=SetWinMetaFileBits(dwSize,&(pBits[sizeof(APMHEADER)]),hDC,&mp);
441 ReleaseDC(NULL,hDC);
457 HDC
458 hDC;
    [all...]
  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_pbuffer.c 70 wglCreatePbufferARB(HDC hCurrentDC,
85 HDC hDC;
240 hDC = GetDC(hWnd);
241 if (!hDC) {
249 fb = stw_framebuffer_create(hDC, iPixelFormat);
270 bRet = SetPixelFormat(hDC, iDisplayablePixelFormat, &pfd);
277 HDC WINAPI
281 HDC hDC;
    [all...]
stw_st.c 176 stw_st_framebuffer_present_locked(HDC hdc,
187 stw_framebuffer_present_locked(hdc, stwfb->fb, resource);
205 HDC hDC;
212 hDC = GetDC(stwfb->fb->hWnd);
214 ret = stw_st_framebuffer_present_locked(hDC, &stwfb->base, statt);
216 ReleaseDC(stwfb->fb->hWnd, hDC);
270 stw_st_swap_framebuffer_locked(HDC hdc, struct st_framebuffer_iface *stfb
    [all...]
  /external/mesa3d/src/gallium/winsys/sw/gdi/
gdi_sw_winsys.c 198 HDC hDC )
202 StretchDIBits(hDC,
216 HDC hDC = (HDC)context_private;
218 gdi_sw_display(winsys, dt, hDC);
  /external/pdfium/core/fxge/win32/
fx_win32_dib.cpp 104 HDC hDC) {
106 return CreateDIBitmap(hDC, (BITMAPINFOHEADER*)info.c_str(), CBM_INIT,
132 HDC hDC = CreateCompatibleDC(nullptr);
138 DeleteDC(hDC);
142 int ret = GetDIBits(hDC, hBitmap, 0, height, pDIBitmap->GetBuffer(),
144 DeleteDC(hDC);
168 HDC hDC = CreateCompatibleDC(nullptr)
    [all...]
fx_win32_dwrite.cpp 425 HDC hDC = pRenderTarget_->GetMemoryDC();
426 HBITMAP hBitmap = (HBITMAP)::GetCurrentObject(hDC, OBJ_BITMAP);
  /external/swiftshader/third_party/PowerVR_SDK/Examples/Beginner/01_HelloAPI/OGLES2/
OGLES2HelloAPI_Windows.cpp 116 @Input hDC Handle to the device context
120 int Cleanup(EGLDisplay eglDisplay, HWND hWnd, HDC hDC)
137 if (hDC) ReleaseDC(hWnd, hDC);
155 HDC hDC = 0;
221 hDC = GetDC(hWnd);
222 if (!hDC)
225 return Cleanup(eglDisplay, hWnd, hDC);
    [all...]
  /external/pdfium/core/fpdfapi/parser/
cpdf_document.cpp 213 void InsertWidthArray(HDC hDC, int start, int end, CPDF_Array* pWidthArray) {
216 GetCharWidth(hDC, start, end, widths);
220 ByteString FPDF_GetPSNameFromTT(HDC hDC) {
222 DWORD size = ::GetFontData(hDC, 'eman', 0, nullptr, 0);
225 ::GetFontData(hDC, 'eman', 0, buffer, size);
    [all...]
  /external/pdfium/core/fpdfdoc/
cpdf_interform.cpp 347 HDC hDC = ::GetDC(nullptr);
348 EnumFontFamiliesExA(hDC, &lf, (FONTENUMPROCA)EnumFontFamExProc, (LPARAM)&fd,
350 ::ReleaseDC(nullptr, hDC);
    [all...]
  /external/pdfium/xfa/fgas/font/
cfgas_fontmgr.cpp 192 HDC hDC = ::GetDC(nullptr);
200 EnumFontFamiliesExW(hDC, (LPLOGFONTW)&lfFind, (FONTENUMPROCW)GdiFontEnumProc,
202 ::ReleaseDC(nullptr, hDC);
    [all...]

Completed in 383 milliseconds