Searched refs:texSize (Results 1 - 16 of 16) sorted by relevance

/external/mesa3d/src/mesa/state_tracker/
H A Dst_atom_pixeltransfer.c53 const uint texSize = pt->width0; local
59 0, 0, texSize, texSize, &transfer);
67 for (i = 0; i < texSize; i++) {
68 for (j = 0; j < texSize; j++) {
70 int k = (i * texSize + j);
72 rgba[0] = ctx->PixelMaps.RtoR.Map[j * rSize / texSize];
73 rgba[1] = ctx->PixelMaps.GtoG.Map[i * gSize / texSize];
74 rgba[2] = ctx->PixelMaps.BtoB.Map[j * bSize / texSize];
75 rgba[3] = ctx->PixelMaps.AtoA.Map[i * aSize / texSize];
[all...]
H A Dst_texture.c410 const uint texSize = 256; /* simple, and usually perfect */ local
419 texSize, texSize, 1, 1, 0, PIPE_BIND_SAMPLER_VIEW);
/external/deqp/modules/gles2/performance/
H A Des2pTextureUploadTests.cpp79 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) argument
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) argument
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) argument
397 : TextureUploadCase (context, name, description, uploadFunction, format, type, texSize)
541 FOR_EACH(texSize, textureSize
[all...]
/external/deqp/external/openglcts/modules/gl/
H A Dgl4cSparseTexture2Tests.cpp215 " <ICOORD_TYPE> texSize = <ICOORD_TYPE>(<SIZE_DEF>);\n"
217 " <COORD_TYPE> coord = <COORD_TYPE>(<COORD_DEF>) / <COORD_TYPE>(texSize);\n"
229 " ivec2 corner2 = ivec2(texSize.x - 1, texSize.y - 1);\n"
1010 GLint texSize = width * height * depth * mState.format.getPixelSize(); local
1013 vecData.resize(texSize);
1016 deMemset(data, 255, texSize);
1110 GLint texSize = width * height * depth * mState.format.getPixelSize(); local
1114 vecExpData.resize(texSize);
1115 vecOutData.resize(texSize);
1148 GLint texSize = width * height * mState.format.getPixelSize(); local
1189 GLint texSize = width * height * depth; local
1674 GLint texSize = width * height * depth * mState.format.getPixelSize(); local
1714 GLint texSize = width * height * mState.format.getPixelSize(); local
1765 GLint texSize = width * height * depth; local
1907 GLint texSize = width * height * depth; local
2651 GLint texSize = width * height * depth * mState.format.getPixelSize(); local
2758 GLint texSize = width * height * depth; local
[all...]
H A Dgl4cSparseTextureClampTests.cpp91 " <ICOORD_TYPE> texSize = <ICOORD_TYPE>(<SIZE_DEF>);\n"
92 " <POINT_TYPE> point = <POINT_TYPE>(coord * texSize);\n"
104 " ivec2 corner2 = ivec2(texSize.x - 1, texSize.y - 1);\n"
148 " <ICOORD_TYPE> texSize = <ICOORD_TYPE>(<SIZE_DEF>);\n"
149 " <POINT_TYPE> point = <POINT_TYPE>(coord * texSize);\n"
308 GLint texSize = width * height; local
312 vecExpData.resize(texSize);
313 vecOutData.resize(texSize);
318 deMemset(exp_data, 255, texSize);
711 GLint texSize = width * height * depth * mState.format.getPixelSize(); local
804 GLint texSize = width * height; local
[all...]
H A Dgl4cSparseTextureTests.cpp1947 GLint texSize = width * height * depth * mState.format.getPixelSize(); local
1950 vecData.resize(texSize);
1953 deMemset(data, 16 + 16 * level, texSize);
2001 GLint texSize = width * height * depth * mState.format.getPixelSize(); local
2005 vecExpData.resize(texSize);
2006 vecOutData.resize(texSize);
2010 deMemset(exp_data, 16 + 16 * level, texSize);
2011 deMemset(out_data, 255, texSize);
2039 GLint texSize = width * height * mState.format.getPixelSize(); local
2043 vecExpData.resize(texSize);
[all...]
/external/deqp/modules/gles31/functional/
H A Des31fFboColorbufferTests.cpp117 FboColorTexCubeArrayCase (Context& context, const char* name, const char* description, deUint32 texFmt, const IVec3& texSize) argument
119 , m_texSize (texSize)
121 DE_ASSERT(texSize.z() % 6 == 0);
H A Des31fGeometryShaderTests.cpp2922 const tcu::IVec3 texSize = getTargetDimensions(m_target); local
2932 m_testCtx.getLog() << tcu::TestLog::Message << "Creating cubemap texture, size = " << texSize.x() << "x" << texSize.y() << tcu::TestLog::EndMessage;
2934 gl.texImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_X, 0, GL_RGBA8, texSize.x(), texSize.y(), 0, transferFormat.format, transferFormat.dataType, DE_NULL);
2935 gl.texImage2D(GL_TEXTURE_CUBE_MAP_NEGATIVE_X, 0, GL_RGBA8, texSize.x(), texSize.y(), 0, transferFormat.format, transferFormat.dataType, DE_NULL);
2936 gl.texImage2D(GL_TEXTURE_CUBE_MAP_POSITIVE_Y, 0, GL_RGBA8, texSize.x(), texSize.y(), 0, transferFormat.format, transferFormat.dataType, DE_NULL);
2937 gl.texImage2D(GL_TEXTURE_CUBE_MAP_NEGATIVE_Y, 0, GL_RGBA8, texSize
3362 const tcu::IVec3 texSize = getTargetDimensions(m_target); local
[all...]
/external/deqp/external/openglcts/modules/common/
H A DglcTextureFilterAnisotropicTests.cpp579 GLuint texSize = 32 / (l + 1); local
582 vecData.resize(texSize * texSize * texFormat.getPixelSize() * 2);
584 tcu::PixelBufferAccess bufferAccess(texFormat, texSize, texSize, 1, vecData.data());
586 for (GLuint x = 0; x < texSize; ++x)
588 for (GLuint y = 0; y < texSize; ++y)
597 TextureFilterAnisotropicUtils::texImage(gl, target, l, internalFormat, texSize, texSize, 1, transFormat.format,
/external/mesa3d/src/mesa/drivers/dri/r200/
H A Dradeon_screen.h78 int texSize[RADEON_NR_TEX_HEAPS]; member in struct:radeon_screen
/external/mesa3d/src/mesa/drivers/dri/radeon/
H A Dradeon_screen.h78 int texSize[RADEON_NR_TEX_HEAPS]; member in struct:radeon_screen
/external/webrtc/webrtc/modules/video_render/mac/
H A Dvideo_render_nsopengl.mm177 GLint texSize;
178 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &texSize);
180 if (texSize < _width || texSize < _height)
H A Dvideo_render_agl.cc189 GLint texSize; local
190 glGetIntegerv(GL_MAX_TEXTURE_SIZE, &texSize);
192 if (texSize < _width || texSize < _height)
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
H A DvktShaderRender.cpp1421 const tcu::UVec3 texSize)
1440 if (isImageSizeSupported(imageCreateInfo.imageType, texSize, deviceProperties.limits) == false)
1861 tcu::UVec3 texSize;
1869 texSize = tcu::UVec3(texture.getWidth(), texture.getHeight(), 1u);
1888 texSize = tcu::UVec3(texture.getSize(), texture.getSize(), 1u);
1922 texSize = tcu::UVec3(texture.getWidth(), texture.getHeight(), 1u);
1949 texSize = tcu::UVec3(texture.getWidth(), texture.getHeight(), texture.getDepth());
1968 texSize = tcu::UVec3(texture.getWidth(), 1, 1);
1987 texSize = tcu::UVec3(texture.getWidth(), 1, 1);
2013 texSize
1414 uploadSparseImage(const tcu::TextureFormat& texFormat, const TextureData& textureData, const tcu::Sampler& refSampler, const deUint32 mipLevels, const deUint32 arrayLayers, const VkImage sparseImage, const VkImageCreateInfo& imageCreateInfo, const tcu::UVec3 texSize) argument
[all...]
H A DvktShaderRender.hpp584 const tcu::UVec3 texSize);
590 const tcu::UVec3 texSize,
/external/deqp/modules/gles3/functional/
H A Des3fFboColorbufferTests.cpp326 FboColorTexCubeCase (Context& context, const char* name, const char* description, deUint32 texFmt, const IVec2& texSize) argument
328 , m_texSize (texSize)
475 FboColorTex2DArrayCase (Context& context, const char* name, const char* description, deUint32 texFmt, const IVec3& texSize) argument
477 , m_texSize (texSize)
601 FboColorTex3DCase (Context& context, const char* name, const char* description, deUint32 texFmt, const IVec3& texSize) argument
603 , m_texSize (texSize)

Completed in 450 milliseconds