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

1 2

  /external/pdfium/core/fpdfapi/render/
cpdf_scaledrenderbuffer.cpp 28 if (m_pDevice->GetDeviceCaps(FXDC_RENDER_CAPS) & FXRC_GET_BITS)
35 int horz_size = pDevice->GetDeviceCaps(FXDC_HORZ_SIZE);
36 int vert_size = pDevice->GetDeviceCaps(FXDC_VERT_SIZE);
39 pDevice->GetDeviceCaps(FXDC_PIXEL_WIDTH) * 254 / (horz_size * 10);
41 pDevice->GetDeviceCaps(FXDC_PIXEL_HEIGHT) * 254 / (vert_size * 10);
50 if (m_pDevice->GetDeviceCaps(FXDC_RENDER_CAPS) & FXRC_ALPHA_OUTPUT) {
cpdf_devicebuffer.cpp 33 int horz_size = pDevice->GetDeviceCaps(FXDC_HORZ_SIZE);
34 int vert_size = pDevice->GetDeviceCaps(FXDC_VERT_SIZE);
37 pDevice->GetDeviceCaps(FXDC_PIXEL_WIDTH) * 254 / (horz_size * 10);
39 pDevice->GetDeviceCaps(FXDC_PIXEL_HEIGHT) * 254 / (vert_size * 10);
59 if (m_pDevice->GetDeviceCaps(FXDC_RENDER_CAPS) & FXRC_GET_BITS) {
  /external/pdfium/core/fxge/win32/
fx_win32_print.cpp 57 m_HorzSize(::GetDeviceCaps(m_hDC, HORZSIZE)),
58 m_VertSize(::GetDeviceCaps(m_hDC, VERTSIZE)) {}
62 int CGdiPrinterDriver::GetDeviceCaps(int caps_id) const {
67 return CGdiDeviceDriver::GetDeviceCaps(caps_id);
333 m_HorzSize = ::GetDeviceCaps(m_hDC, HORZSIZE);
334 m_VertSize = ::GetDeviceCaps(m_hDC, VERTSIZE);
335 m_Width = ::GetDeviceCaps(m_hDC, HORZRES);
336 m_Height = ::GetDeviceCaps(m_hDC, VERTRES);
337 m_nBitsPerPixel = ::GetDeviceCaps(m_hDC, BITSPIXEL);
369 int CPSPrinterDriver::GetDeviceCaps(int caps_id) const
    [all...]
win32_int.h 131 int GetDeviceCaps(int caps_id) const override;
233 int GetDeviceCaps(int caps_id) const override;
274 int GetDeviceCaps(int caps_id) const override;
fx_win32_device.cpp 746 m_nBitsPerPixel = ::GetDeviceCaps(m_hDC, BITSPIXEL);
747 m_Width = ::GetDeviceCaps(m_hDC, HORZRES);
748 m_Height = ::GetDeviceCaps(m_hDC, VERTRES);
759 int CGdiDeviceDriver::GetDeviceCaps(int caps_id) const {
    [all...]
  /external/swiftshader/src/OpenGL/libGL/
Display.cpp 217 displayMode.width = ::GetDeviceCaps(deviceContext, HORZRES);
218 displayMode.height = ::GetDeviceCaps(deviceContext, VERTRES);
219 unsigned int bpp = ::GetDeviceCaps(deviceContext, BITSPIXEL);
  /external/ImageMagick/coders/
screenshot.c 167 screen->columns=(size_t) GetDeviceCaps(hDC,HORZRES);
168 screen->rows=(size_t) GetDeviceCaps(hDC,VERTRES);
  /external/pdfium/core/fxge/
ifx_renderdevicedriver.h 27 virtual int GetDeviceCaps(int caps_id) const = 0;
cfx_renderdevice.h 101 int GetDeviceCaps(int id) const;
  /external/swiftshader/src/D3D8/
Direct3D8.hpp 52 long __stdcall GetDeviceCaps(unsigned int adapter, D3DDEVTYPE deviceType, D3DCAPS8 *caps) override;
Direct3D8.cpp 659 mode->Width = ::GetDeviceCaps(deviceContext, HORZRES);
660 mode->Height = ::GetDeviceCaps(deviceContext, VERTRES);
661 mode->RefreshRate = ::GetDeviceCaps(deviceContext, VREFRESH);
662 unsigned int bpp = ::GetDeviceCaps(deviceContext, BITSPIXEL);
    [all...]
Direct3DDevice8.hpp 96 long __stdcall GetDeviceCaps(D3DCAPS8 *caps) override;
  /external/swiftshader/src/D3D9/
Direct3D9.hpp 51 long __stdcall GetDeviceCaps(unsigned int adapter, D3DDEVTYPE deviceType, D3DCAPS9 *caps) override;
Direct3D9Ex.cpp 211 long Direct3D9Ex::GetDeviceCaps(unsigned int adapter, D3DDEVTYPE deviceType, D3DCAPS9 *capabilities)
221 return d3d9ex->GetDeviceCaps(adapter, deviceType, capabilities);
225 return GetDeviceCaps(adapter, D3DDEVTYPE_HAL, capabilities);
229 long result = Direct3D9::GetDeviceCaps(adapter, deviceType, capabilities);
Direct3D9Ex.hpp 51 long __stdcall GetDeviceCaps(unsigned int adapter, D3DDEVTYPE deviceType, D3DCAPS9 *caps) override;
Direct3D9.cpp     [all...]
  /external/mesa3d/include/d3dadapter/
d3dadapter9.h 46 HRESULT (WINAPI *GetDeviceCaps)(ID3DAdapter9 *This, D3DDEVTYPE DeviceType, D3DCAPS9 *pCaps);
67 #define ID3DAdapter9_GetDeviceCaps(p,a,b) (p)->lpVtbl->GetDeviceCaps(p,a,b)
81 HRESULT WINAPI GetDeviceCaps(D3DDEVTYPE DeviceType, D3DCAPS9 *pCaps);
  /external/pdfium/core/fxge/agg/
fx_agg_driver.cpp 469 int CFX_AggDeviceDriver::GetDeviceCaps(int caps_id) const {
553 GetDeviceCaps(FXDC_PIXEL_WIDTH), GetDeviceCaps(FXDC_PIXEL_HEIGHT));
560 CFX_FloatRect(0, 0, (FX_FLOAT)GetDeviceCaps(FXDC_PIXEL_WIDTH),
561 (FX_FLOAT)GetDeviceCaps(FXDC_PIXEL_HEIGHT)));
571 rasterizer.clip_box(0.0f, 0.0f, (FX_FLOAT)(GetDeviceCaps(FXDC_PIXEL_WIDTH)),
572 (FX_FLOAT)(GetDeviceCaps(FXDC_PIXEL_HEIGHT)));
587 GetDeviceCaps(FXDC_PIXEL_WIDTH), GetDeviceCaps(FXDC_PIXEL_HEIGHT));
592 rasterizer.clip_box(0.0f, 0.0f, (FX_FLOAT)(GetDeviceCaps(FXDC_PIXEL_WIDTH))
    [all...]
fx_agg_driver.h 45 int GetDeviceCaps(int caps_id) const override;
  /external/icu/icu4c/source/samples/layout/
GDIFontInstance.cpp 132 dpiX = (FLOAT) GetDeviceCaps(hdc, LOGPIXELSX);
133 dpiY = (FLOAT) GetDeviceCaps(hdc, LOGPIXELSY);
217 dpiX = (FLOAT) GetDeviceCaps(hdc, LOGPIXELSX);
218 dpiY = (FLOAT) GetDeviceCaps(hdc, LOGPIXELSY);
  /external/webrtc/webrtc/modules/desktop_capture/win/
screen_capturer_win_gdi.cc 126 GetDeviceCaps(desktop_dc_, LOGPIXELSX),
127 GetDeviceCaps(desktop_dc_, LOGPIXELSY)));
screen_capturer_win_magnifier.cc 161 frame->set_dpi(DesktopVector(GetDeviceCaps(desktop_dc_, LOGPIXELSX),
162 GetDeviceCaps(desktop_dc_, LOGPIXELSY)));
  /external/pdfium/core/fxge/skia/
fx_skia_device.h 38 int GetDeviceCaps(int caps_id) const override;
fx_skia_device.cpp     [all...]
  /external/pdfium/core/fxge/ge/
cfx_renderdevice.cpp 391 m_Width = m_pDeviceDriver->GetDeviceCaps(FXDC_PIXEL_WIDTH);
392 m_Height = m_pDeviceDriver->GetDeviceCaps(FXDC_PIXEL_HEIGHT);
393 m_bpp = m_pDeviceDriver->GetDeviceCaps(FXDC_BITS_PIXEL);
394 m_RenderCaps = m_pDeviceDriver->GetDeviceCaps(FXDC_RENDER_CAPS);
395 m_DeviceClass = m_pDeviceDriver->GetDeviceCaps(FXDC_DEVICE_CLASS);
413 int CFX_RenderDevice::GetDeviceCaps(int caps_id) const {
414 return m_pDeviceDriver->GetDeviceCaps(caps_id);
    [all...]

Completed in 321 milliseconds

1 2