Home
last modified time | relevance | path

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

/external/swiftshader/third_party/PowerVR_SDK/Shell/OS/LinuxX11/
DPVRShellOS.cpp78 m_pShell->m_pShellData->nShellDimX = -240; in OsInit()
160 if(m_pShell->m_pShellData->nShellDimX < 0) { in OsInitOS()
161 m_pShell->m_pShellData->nShellDimX = display_width; in OsInitOS()
169 if(m_pShell->m_pShellData->nShellDimX < 0) in OsInitOS()
170 m_pShell->m_pShellData->nShellDimX = (display_width > display_height) ? 800 : 600; in OsInitOS()
175 if(m_pShell->m_pShellData->nShellDimX > display_width) in OsInitOS()
176 m_pShell->m_pShellData->nShellDimX = display_width; in OsInitOS()
193 …m_X11Pixmap = XCreatePixmap(m_X11Display,m_X11Window,m_pShell->m_pShellData->nShellDimX,m_pShell->… in OsInitOS()
292 vec2PointerLocation[0] = (float)button_event->x / (float)m_pShell->m_pShellData->nShellDimX; in OsRenderComplete()
314 vec2PointerLocation[0] = (float)button_event->x / (float)m_pShell->m_pShellData->nShellDimX; in OsRenderComplete()
[all …]
/external/swiftshader/third_party/PowerVR_SDK/Shell/OS/Windows/
DPVRShellOS.cpp89 m_pShell->m_pShellData->nShellDimX = SHELL_DISPLAY_DIM_X; in OsInit()
200 (m_pShell->m_pShellData->nShellDimX > (sMInfo.rcMonitor.right - sMInfo.rcMonitor.left)) || in OsInitOS()
203 m_pShell->m_pShellData->nShellDimX >>= 1; in OsInitOS()
214 …BLE | WS_SYSMENU,CW_USEDEFAULT, CW_USEDEFAULT, m_pShell->m_pShellData->nShellDimX, m_pShell->m_pSh… in OsInitOS()
227 m_pShell->m_pShellData->nShellPosX+m_pShell->m_pShellData->nShellDimX, in OsInitOS()
260 m_pShell->m_pShellData->nShellDimX = sMInfo.rcMonitor.right; in OsInitOS()
262 …SetWindowPos(m_hWnd,HWND_TOPMOST,0,0,m_pShell->m_pShellData->nShellDimX,m_pShell->m_pShellData->nS… in OsInitOS()
/external/swiftshader/third_party/PowerVR_SDK/Shell/
DPVRShellImpl.h41 int nShellDimX; /*!< Width in pixels. */ member
DPVRShell.cpp224 case prefIsRotated: return (m_pShellData->nShellDimY > m_pShellData->nShellDimX); in PVRShellGet()
298 m_pShellData->nShellDimX = value; in PVRShellSet()
418 case prefWidth: return m_pShellData->nShellDimX; in PVRShellGet()
/external/swiftshader/third_party/PowerVR_SDK/Shell/API/KEGL/
DPVRShellAPI.cpp320 EGL_WIDTH, (EGLint*)&m_pShell->m_pShellData->nShellDimX in ApiInitAPI()
327 glViewport(0, 0, m_pShell->m_pShellData->nShellDimX, m_pShell->m_pShellData->nShellDimY); in ApiInitAPI()