Searched refs:vRes (Results 1 – 4 of 4) sorted by relevance
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/ |
D | clip.h | 75 Float<SIMD_T> vRes = SIMD_T::cmplt_ps(vertex.x, vNegW); in ComputeClipCodes() local 76 clipCodes = SIMD_T::and_ps(vRes, SIMD_T::castsi_ps(SIMD_T::set1_epi32(FRUSTUM_LEFT))); in ComputeClipCodes() 79 vRes = SIMD_T::cmplt_ps(vertex.y, vNegW); in ComputeClipCodes() 81 clipCodes, SIMD_T::and_ps(vRes, SIMD_T::castsi_ps(SIMD_T::set1_epi32(FRUSTUM_TOP)))); in ComputeClipCodes() 84 vRes = SIMD_T::cmpgt_ps(vertex.x, vertex.w); in ComputeClipCodes() 86 clipCodes, SIMD_T::and_ps(vRes, SIMD_T::castsi_ps(SIMD_T::set1_epi32(FRUSTUM_RIGHT)))); in ComputeClipCodes() 89 vRes = SIMD_T::cmpgt_ps(vertex.y, vertex.w); in ComputeClipCodes() 91 clipCodes, SIMD_T::and_ps(vRes, SIMD_T::castsi_ps(SIMD_T::set1_epi32(FRUSTUM_BOTTOM)))); in ComputeClipCodes() 99 vRes = SIMD_T::cmplt_ps(vertex.z, SIMD_T::setzero_ps()); in ComputeClipCodes() 103 vRes = SIMD_T::cmplt_ps(vertex.z, vNegW); in ComputeClipCodes() [all …]
|
/external/python/cpython2/Mac/Demo/imgbrowse/ |
D | mac_image.py | 35 hRes, vRes, \ 45 print 'resolution: %f x %f'%(float(hRes)/0x10000, float(vRes)/0x10000)
|
/external/deqp/framework/egl/ |
D | egluUtil.cpp | 228 const EGLint vRes = querySurfaceInt(egl, display, surface, EGL_VERTICAL_RESOLUTION); in getSurfaceResolution() local 230 if (hRes == EGL_UNKNOWN || vRes == EGL_UNKNOWN) in getSurfaceResolution() 232 return tcu::IVec2(hRes, vRes); in getSurfaceResolution()
|
/external/deqp/modules/egl/ |
D | teglQuerySurfaceTests.cpp | 151 const EGLint vRes = eglu::querySurfaceInt(egl, display, surface, EGL_VERTICAL_RESOLUTION); in checkCommonAttributes() local 153 if ((hRes <= 0 || vRes <= 0) && (hRes != EGL_UNKNOWN && vRes != EGL_UNKNOWN)) in checkCommonAttributes() 155 …log << TestLog::Message << " Fail, invalid surface resolution " << hRes << "x" << vRes << TestL… in checkCommonAttributes()
|