HomeSort by relevance Sort by last modified time
    Searched refs:texSize (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
st_atom_pixeltransfer.c 100 const uint texSize = pt->width0;
106 0, 0, texSize, texSize);
115 for (i = 0; i < texSize; i++) {
116 for (j = 0; j < texSize; j++) {
118 int k = (i * texSize + j);
120 rgba[0] = ctx->PixelMaps.RtoR.Map[j * rSize / texSize];
121 rgba[1] = ctx->PixelMaps.GtoG.Map[i * gSize / texSize];
122 rgba[2] = ctx->PixelMaps.BtoB.Map[j * bSize / texSize];
123 rgba[3] = ctx->PixelMaps.AtoA.Map[i * aSize / texSize];
    [all...]
st_texture.c 423 const uint texSize = 256; /* simple, and usually perfect */
431 texSize, texSize, 1, 1, PIPE_BIND_SAMPLER_VIEW);
  /external/mesa3d/src/mesa/state_tracker/
st_atom_pixeltransfer.c 100 const uint texSize = pt->width0;
106 0, 0, texSize, texSize);
115 for (i = 0; i < texSize; i++) {
116 for (j = 0; j < texSize; j++) {
118 int k = (i * texSize + j);
120 rgba[0] = ctx->PixelMaps.RtoR.Map[j * rSize / texSize];
121 rgba[1] = ctx->PixelMaps.GtoG.Map[i * gSize / texSize];
122 rgba[2] = ctx->PixelMaps.BtoB.Map[j * bSize / texSize];
123 rgba[3] = ctx->PixelMaps.AtoA.Map[i * aSize / texSize];
    [all...]
st_texture.c 423 const uint texSize = 256; /* simple, and usually perfect */
431 texSize, texSize, 1, 1, PIPE_BIND_SAMPLER_VIEW);
  /external/deqp/modules/gles2/performance/
es2pTextureUploadTests.cpp 79 TextureUploadCase (Context& context, const char* name, const char* description, UploadFunction uploadFunction, deUint32 format, deUint32 type, int texSize);
104 TextureUploadCase::TextureUploadCase (Context& context, const char* name, const char* description, UploadFunction uploadFunction, deUint32 format, deUint32 type, int texSize)
109 , m_texSize (texSize)
295 TextureUploadCallCase (Context& context, const char* name, const char* description, UploadFunction uploadFunction, deUint32 format, deUint32 type, int texSize);
302 TextureUploadCallCase::TextureUploadCallCase (Context& context, const char* name, const char* description, UploadFunction uploadFunction, deUint32 format, deUint32 type, int texSize)
303 : TextureUploadCase (context, name, description, uploadFunction, format, type, texSize)
385 TextureUploadAndDrawCase (Context& context, const char* name, const char* description, UploadFunction uploadFunction, deUint32 format, deUint32 type, int texSize);
396 TextureUploadAndDrawCase::TextureUploadAndDrawCase (Context& context, const char* name, const char* description, UploadFunction uploadFunction, deUint32 format, deUint32 type, int texSize)
397 : TextureUploadCase (context, name, description, uploadFunction, format, type, texSize)
541 FOR_EACH(texSize, textureSizes
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_screen.h 78 int texSize[RADEON_NR_TEX_HEAPS];
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_screen.h 78 int texSize[RADEON_NR_TEX_HEAPS];
  /external/deqp/modules/gles31/functional/
es31fFboColorbufferTests.cpp 117 FboColorTexCubeArrayCase (Context& context, const char* name, const char* description, deUint32 texFmt, const IVec3& texSize)
119 , m_texSize (texSize)
121 DE_ASSERT(texSize.z() % 6 == 0);
es31fGeometryShaderTests.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fFboColorbufferTests.cpp 326 FboColorTexCubeCase (Context& context, const char* name, const char* description, deUint32 texFmt, const IVec2& texSize)
328 , m_texSize (texSize)
475 FboColorTex2DArrayCase (Context& context, const char* name, const char* description, deUint32 texFmt, const IVec3& texSize)
477 , m_texSize (texSize)
601 FboColorTex3DCase (Context& context, const char* name, const char* description, deUint32 texFmt, const IVec3& texSize)
603 , m_texSize (texSize)
  /external/chromium_org/third_party/webrtc/modules/video_render/mac/
video_render_nsopengl.mm 178 GLint texSize;
179 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &texSize);
181 if (texSize < _width || texSize < _height)
video_render_agl.cc 190 GLint texSize;
191 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &texSize);
193 if (texSize < _width || texSize < _height)
    [all...]
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d11/
TextureStorage11.cpp 297 gl::Extents texSize(getLevelWidth(level), getLevelHeight(level), getLevelDepth(level));
303 copyArea.width == texSize.width &&
304 copyArea.height == texSize.height &&
305 copyArea.depth == texSize.depth;
318 return blitter->copyDepthStencil(srcTexture, sourceSubresource, copyArea, texSize,
319 dstTexture, dstSubresource, copyArea, texSize,
    [all...]

Completed in 2544 milliseconds