Home
last modified time | relevance | path

Searched refs:nShellDimY (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/PowerVR_SDK/Shell/OS/LinuxX11/
DPVRShellOS.cpp79 m_pShell->m_pShellData->nShellDimY = -320; in OsInit()
163 if(m_pShell->m_pShellData->nShellDimY < 0) { in OsInitOS()
164 m_pShell->m_pShellData->nShellDimY = display_height; in OsInitOS()
172 if(m_pShell->m_pShellData->nShellDimY < 0) in OsInitOS()
173 m_pShell->m_pShellData->nShellDimY = (display_width > display_height) ? 600 : 800; in OsInitOS()
178 if(m_pShell->m_pShellData->nShellDimY > display_height) in OsInitOS()
179 m_pShell->m_pShellData->nShellDimY = display_height; in OsInitOS()
193 …11Display,m_X11Window,m_pShell->m_pShellData->nShellDimX,m_pShell->m_pShellData->nShellDimY,depth); in OsInitOS()
293 vec2PointerLocation[1] = (float)button_event->y / (float)m_pShell->m_pShellData->nShellDimY; in OsRenderComplete()
315 vec2PointerLocation[1] = (float)button_event->y / (float)m_pShell->m_pShellData->nShellDimY; in OsRenderComplete()
[all …]
/external/swiftshader/third_party/PowerVR_SDK/Shell/OS/Windows/
DPVRShellOS.cpp90 m_pShell->m_pShellData->nShellDimY = SHELL_DISPLAY_DIM_Y; in OsInit()
201 (m_pShell->m_pShellData->nShellDimY > (sMInfo.rcMonitor.bottom - sMInfo.rcMonitor.top))) in OsInitOS()
204 m_pShell->m_pShellData->nShellDimY >>= 1; in OsInitOS()
214 …_USEDEFAULT, CW_USEDEFAULT, m_pShell->m_pShellData->nShellDimX, m_pShell->m_pShellData->nShellDimY, in OsInitOS()
228 m_pShell->m_pShellData->nShellPosY+m_pShell->m_pShellData->nShellDimY); in OsInitOS()
261 m_pShell->m_pShellData->nShellDimY = sMInfo.rcMonitor.bottom; in OsInitOS()
262 …s(m_hWnd,HWND_TOPMOST,0,0,m_pShell->m_pShellData->nShellDimX,m_pShell->m_pShellData->nShellDimY,0); in OsInitOS()
/external/swiftshader/third_party/PowerVR_SDK/Shell/
DPVRShellImpl.h42 int nShellDimY; /*!< Height in pixels. */ member
DPVRShell.cpp224 case prefIsRotated: return (m_pShellData->nShellDimY > m_pShellData->nShellDimX); in PVRShellGet()
306 m_pShellData->nShellDimY = value; in PVRShellSet()
419 case prefHeight: return m_pShellData->nShellDimY; in PVRShellGet()
/external/swiftshader/third_party/PowerVR_SDK/Shell/API/KEGL/
DPVRShellAPI.cpp323 EGL_HEIGHT, (EGLint*)&m_pShell->m_pShellData->nShellDimY in ApiInitAPI()
327 glViewport(0, 0, m_pShell->m_pShellData->nShellDimX, m_pShell->m_pShellData->nShellDimY); in ApiInitAPI()