Home
last modified time | relevance | path

Searched refs:vRes (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dclip.h73 typename SIMD_T::Float vRes = SIMD_T::cmplt_ps(vertex.x, vNegW); in ComputeClipCodes() local
74 clipCodes = SIMD_T::and_ps(vRes, SIMD_T::castsi_ps(SIMD_T::set1_epi32(FRUSTUM_LEFT))); in ComputeClipCodes()
77 vRes = SIMD_T::cmplt_ps(vertex.y, vNegW); in ComputeClipCodes()
78 …clipCodes = SIMD_T::or_ps(clipCodes, SIMD_T::and_ps(vRes, SIMD_T::castsi_ps(SIMD_T::set1_epi32(FRU… in ComputeClipCodes()
81 vRes = SIMD_T::cmpgt_ps(vertex.x, vertex.w); in ComputeClipCodes()
82 …clipCodes = SIMD_T::or_ps(clipCodes, SIMD_T::and_ps(vRes, SIMD_T::castsi_ps(SIMD_T::set1_epi32(FRU… in ComputeClipCodes()
85 vRes = SIMD_T::cmpgt_ps(vertex.y, vertex.w); in ComputeClipCodes()
86 …clipCodes = SIMD_T::or_ps(clipCodes, SIMD_T::and_ps(vRes, SIMD_T::castsi_ps(SIMD_T::set1_epi32(FRU… in ComputeClipCodes()
94 vRes = SIMD_T::cmplt_ps(vertex.z, SIMD_T::setzero_ps()); in ComputeClipCodes()
98 vRes = SIMD_T::cmplt_ps(vertex.z, vNegW); in ComputeClipCodes()
[all …]
/external/python/cpython2/Mac/Demo/imgbrowse/
Dmac_image.py35 hRes, vRes, \
45 print 'resolution: %f x %f'%(float(hRes)/0x10000, float(vRes)/0x10000)
/external/deqp/framework/egl/
DegluUtil.cpp228 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/
DteglQuerySurfaceTests.cpp151 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()