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

  /external/deqp/modules/gles31/functional/
es31fFboColorbufferTests.cpp 117 FboColorTexCubeArrayCase (Context& context, const char* name, const char* description, deUint32 texFmt, const IVec3& texSize)
118 : FboColorbufferCase (context, name, description, texFmt)
137 tcu::TextureFormat texFmt = glu::mapGLInternalFormat(m_format);
138 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
140 Texture2DShader texToFboShader (DataTypes() << glu::TYPE_SAMPLER_2D, getFragmentOutputType(texFmt), fmtInfo.valueMax-fmtInfo.valueMin, fmtInfo.valueMin);
141 TextureCubeArrayShader arrayTexShader (glu::getSamplerCubeArrayType(texFmt), glu::TYPE_FLOAT_VEC4, glu::getContextTypeGLSLVersion(m_context.getRenderContext().getType()));
155 glu::TransferFormat transferFmt = glu::getTransferFormat(texFmt);
es31fTextureFilteringTests.cpp 210 const tcu::TextureFormat texFmt = glu::mapGLInternalFormat(m_internalFormat);
211 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
333 const tcu::TextureFormat texFmt = curCase.texture->getRefTexture().getFormat();
334 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
344 refParams.samplerType = getSamplerType(texFmt);
es31fShaderImageLoadStoreTests.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fFboColorbufferTests.cpp 326 FboColorTexCubeCase (Context& context, const char* name, const char* description, deUint32 texFmt, const IVec2& texSize)
327 : FboColorbufferCase (context, name, description, texFmt)
361 tcu::TextureFormat texFmt = glu::mapGLInternalFormat(m_format);
362 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
364 Texture2DShader texToFboShader (DataTypes() << glu::TYPE_SAMPLER_2D, getFragmentOutputType(texFmt), fmtInfo.valueMax-fmtInfo.valueMin, fmtInfo.valueMin);
365 TextureCubeShader cubeTexShader (glu::getSamplerCubeType(texFmt), glu::TYPE_FLOAT_VEC4);
379 glu::TransferFormat transferFmt = glu::getTransferFormat(texFmt);
475 FboColorTex2DArrayCase (Context& context, const char* name, const char* description, deUint32 texFmt, const IVec3& texSize)
476 : FboColorbufferCase (context, name, description, texFmt)
490 tcu::TextureFormat texFmt = glu::mapGLInternalFormat(m_format)
    [all...]
es3fTextureFilteringTests.cpp 284 const tcu::TextureFormat texFmt = m_textures[0]->getRefTexture().getFormat();
285 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
297 refParams.samplerType = getSamplerType(texFmt);
586 const tcu::TextureFormat& texFmt = curCase.texture->getRefTexture().getFormat();
587 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
606 sampleParams.samplerType = getSamplerType(texFmt);
758 const tcu::TextureFormat texFmt = glu::mapGLInternalFormat(m_internalFormat);
759 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
853 const tcu::TextureFormat texFmt = curCase.texture->getRefTexture().getFormat();
854 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
    [all...]
es3fFboStencilbufferTests.cpp 263 tcu::TextureFormat texFmt = glu::mapGLInternalFormat(format);
267 if (texFmt.order == tcu::TextureFormat::DS)
es3fFramebufferBlitTests.cpp     [all...]
es3fFragmentOutputTests.cpp 575 const tcu::TextureFormat texFmt = glu::mapGLInternalFormat(m_fboSpec[ndx].format);
576 const tcu::TextureChannelClass chnClass = tcu::getTextureChannelClass(texFmt.type);
581 const tcu::TextureFormat refFmt = isFixedPoint ? tcu::TextureFormat(texFmt.order, tcu::TextureFormat::FLOAT) : texFmt;
582 const tcu::TextureFormat readFmt = getFramebufferReadFormat(texFmt);
587 attachments[ndx].format = texFmt;
    [all...]
es3fTextureMipmapTests.cpp     [all...]
es3fTextureShadowTests.cpp 487 tcu::TextureFormat texFmt = glu::mapGLInternalFormat(m_format);
488 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
779 tcu::TextureFormat texFmt = glu::mapGLInternalFormat(m_format);
780 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
    [all...]
es3fShaderTextureFunctionTests.cpp 567 tcu::TextureFormat texFmt = glu::mapGLInternalFormat(m_textureSpec.format);
568 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
    [all...]
  /external/deqp/modules/glshared/
glsScissorTests.cpp 544 tcu::TextureFormat texFmt;
626 vector<deUint8> refData (width*height*bufferFmt.texFmt.getPixelSize());
627 vector<deUint8> resData (width*height*bufferFmt.texFmt.getPixelSize());
629 tcu::PixelBufferAccess refAccess (bufferFmt.texFmt, width, height, 1, &refData[0]);
630 tcu::PixelBufferAccess resAccess (bufferFmt.texFmt, width, height, 1, &resData[0]);
769 retval.texFmt = tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::HALF_FLOAT);
775 retval.texFmt = tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::SIGNED_INT32);
780 retval.texFmt = tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNSIGNED_INT32);
785 retval.texFmt = tcu::TextureFormat(tcu::TextureFormat::RGBA, tcu::TextureFormat::UNORM_INT8);
  /external/deqp/modules/gles2/accuracy/
es2aTextureFilteringTests.cpp 203 const tcu::TextureFormat& texFmt = m_textures[0]->getRefTexture().getFormat();
204 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
232 refParams.samplerType = getSamplerType(texFmt);
528 const tcu::TextureFormat& texFmt = m_textures[0]->getRefTexture().getFormat();
529 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
546 sampleParams.samplerType = getSamplerType(texFmt);
es2aTextureMipmapTests.cpp 255 const tcu::TextureFormat& texFmt = refTexture.getFormat();
256 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
  /external/deqp/modules/gles3/accuracy/
es3aTextureFilteringTests.cpp 193 const tcu::TextureFormat& texFmt = m_textures[0]->getRefTexture().getFormat();
194 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
222 refParams.samplerType = getSamplerType(texFmt);
537 const tcu::TextureFormat& texFmt = m_textures[0]->getRefTexture().getFormat();
538 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
555 sampleParams.samplerType = getSamplerType(texFmt);
es3aTextureMipmapTests.cpp 246 const tcu::TextureFormat& texFmt = refTexture.getFormat();
247 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
  /external/deqp/modules/gles2/functional/
es2fShaderTextureFunctionTests.cpp 323 tcu::TextureFormat texFmt = glu::mapGLTransferFormat(m_textureSpec.format, m_textureSpec.dataType);
324 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
428 tcu::TextureFormat texFmt = glu::mapGLTransferFormat(m_textureSpec.format, m_textureSpec.dataType);
435 case TEXTURETYPE_2D: samplerType = glu::getSampler2DType(texFmt); break;
436 case TEXTURETYPE_CUBE_MAP: samplerType = glu::getSamplerCubeType(texFmt); break;
es2fTextureFilteringTests.cpp 266 const tcu::TextureFormat texFmt = m_textures[0]->getRefTexture().getFormat();
267 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
279 refParams.samplerType = getSamplerType(texFmt);
539 const tcu::TextureFormat& texFmt = curCase.texture->getRefTexture().getFormat();
540 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
559 sampleParams.samplerType = getSamplerType(texFmt);
  /external/deqp/external/vulkancts/modules/vulkan/texture/
vktTextureFilteringTests.cpp 199 const tcu::TextureFormat texFmt = texture.getTextureFormat();
200 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
209 refParams.samplerType = getSamplerType(texFmt);
413 const tcu::TextureFormat texFmt = texture.getTextureFormat();
414 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
421 refParams.samplerType = getSamplerType(texFmt);
611 const tcu::TextureFormat texFmt = texture.getTextureFormat();
612 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
621 refParams.samplerType = getSamplerType(texFmt);
795 const tcu::TextureFormat texFmt = texture.getTextureFormat()
    [all...]
vktTextureMipmapTests.cpp 674 const tcu::TextureFormat& texFmt = mapVkFormat(testParameters.format);
675 tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
770 const tcu::TextureFormat& texFmt = m_texture->getTextureFormat();
771 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
792 refParams.samplerType = getSamplerType(texFmt);
    [all...]
vktTextureShadowTests.cpp 321 const tcu::TextureFormat texFmt = texture.getTextureFormat();
322 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
    [all...]
  /external/deqp/modules/gles2/performance/
es2pTextureUploadTests.cpp 217 const tcu::TextureFormat& texFmt = glu::mapGLTransferFormat(m_format, m_type);
218 int pixelSize = texFmt.getPixelSize();
223 tcu::PixelBufferAccess access (texFmt, m_texSize, m_texSize, 1, stride, 0, &m_texData[0]);
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderTextureFunctionTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/protected_memory/
vktProtectedMemShaderImageAccessTests.cpp 481 const tcu::TextureFormat texFmt = mapVkFormat(m_params.imageFormat);
482 const tcu::TextureFormatInfo fmtInfo = tcu::getTextureFormatInfo(texFmt);
483 de::MovePtr<tcu::Texture2D> texture2D (new tcu::Texture2D(texFmt, IMAGE_WIDTH, IMAGE_HEIGHT));
    [all...]
  /external/deqp/framework/opengl/simplereference/
sglrReferenceContext.cpp 163 tcu::TextureFormat texFmt;
176 return pixelFormatMap[ndx].texFmt;
    [all...]

Completed in 2426 milliseconds