/external/deqp/framework/opengl/ |
H A D | gluTextureUtil.hpp | 44 deUint32 dataType; //!< Data type. member in struct:glu::TransferFormat 48 , dataType (0) 54 , dataType (dataType_) 59 tcu::TextureFormat mapGLTransferFormat (deUint32 format, deUint32 dataType);
|
H A D | gluShaderUtil.cpp | 169 const char* getDataTypeName (DataType dataType) argument 244 DE_ASSERT(deInBounds32((int)dataType, 0, DE_LENGTH_OF_ARRAY(s_names))); 245 return s_names[(int)dataType]; 248 int getDataTypeScalarSize (DataType dataType) argument 323 DE_ASSERT(deInBounds32((int)dataType, 0, DE_LENGTH_OF_ARRAY(s_sizes))); 324 return s_sizes[(int)dataType]; 327 DataType getDataTypeScalarType (DataType dataType) argument 402 DE_ASSERT(deInBounds32((int)dataType, 0, DE_LENGTH_OF_ARRAY(s_scalarTypes))); 403 return s_scalarTypes[(int)dataType]; 406 DataType getDataTypeFloatScalars (DataType dataType) argument 526 getDataTypeMatrixNumRows(DataType dataType) argument 545 getDataTypeMatrixNumColumns(DataType dataType) argument 564 getDataTypeNumLocations(DataType dataType) argument 575 getDataTypeNumComponents(DataType dataType) argument [all...] |
H A D | gluTexture.cpp | 52 Texture1D::Texture1D (const RenderContext& context, deUint32 format, deUint32 dataType, int width) argument 55 , m_refTexture (mapGLTransferFormat(format, dataType), width) 97 gl.texImage1D(GL_TEXTURE_1D, levelNdx, m_format, access.getWidth(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr()); 105 Texture2D::Texture2D (const RenderContext& context, deUint32 format, deUint32 dataType, int width, int height) argument 109 , m_refTexture (mapGLTransferFormat(format, dataType), width, height) 181 gl.texImage2D(GL_TEXTURE_2D, levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr()); 316 TextureCube::TextureCube (const RenderContext& context, deUint32 format, deUint32 dataType, int size) argument 320 , m_refTexture (mapGLTransferFormat(format, dataType), size) 368 gl.texImage2D(getGLCubeFace((tcu::CubeFace)face), levelNdx, m_format, access.getWidth(), access.getHeight(), 0 /* border */, transferFormat.format, transferFormat.dataType, access.getDataPtr()); 441 Texture1DArray::Texture1DArray (const RenderContext& context, deUint32 format, deUint32 dataType, in argument 495 Texture2DArray(const RenderContext& context, deUint32 format, deUint32 dataType, int width, int height, int numLevels) argument 611 Texture3D(const RenderContext& context, deUint32 format, deUint32 dataType, int width, int height, int depth) argument 736 TextureCubeArray(const RenderContext& context, deUint32 format, deUint32 dataType, int size, int numLayers) argument [all...] |
/external/deqp/framework/opengl/simplereference/ |
H A D | sglrContext.cpp | 45 deUint32 dataType = GL_NONE; local 55 dataType = GL_UNSIGNED_BYTE; 62 dataType = transferFmt.dataType; 67 texImage2D(target, level, internalFormat, width, height, 0, format, dataType, DE_NULL);
|
/external/deqp/modules/gles2/performance/ |
H A D | es2pTextureCountTests.cpp | 56 deUint32 dataType; member in struct:deqp::gles2::Performance::__anon3257 71 deUint32 dataType = texFormats[formatNdx].dataType; local 78 string description = string(glu::getPixelFormatName(format)) + ", " + glu::getTypeName(dataType); 80 addChild(new Texture2DRenderCase(m_context, name.c_str(), description.c_str(), format, dataType, wrapS, wrapT, minFilter, magFilter, tcu::Mat3(), numTextures, false /* npot */));
|
H A D | es2pTextureFormatTests.cpp | 54 deUint32 dataType; member in struct:deqp::gles2::Performance::__anon3260 70 deUint32 dataType = texFormats[formatNdx].dataType; local 77 string descriptionBase = string(glu::getPixelFormatName(format)) + ", " + glu::getTypeName(dataType); 79 addChild(new Texture2DRenderCase(m_context, nameBase.c_str(), descriptionBase.c_str(), format, dataType, wrapS, wrapT, minFilter, magFilter, tcu::Mat3(), numTextures, false /* npot */));
|
H A D | es2pTextureFilteringTests.cpp | 54 deUint32 dataType; member in struct:deqp::gles2::Performance::__anon3258 85 deUint32 dataType = texFormats[formatNdx].dataType; local 94 addChild(new Texture2DRenderCase(m_context, name.c_str(), "", format, dataType, wrapS, wrapT, minFilter, magFilter, minify ? minTransform : magTransform, numTextures, true /* pot */));
|
H A D | es2pTextureCases.cpp | 57 deUint32 dataType, 67 , m_dataType (dataType) 53 Texture2DRenderCase(Context& context, const char* name, const char* description, deUint32 format, deUint32 dataType, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, const tcu::Mat3& coordTransform, int numTextures, bool powerOfTwo) argument
|
/external/aac/libSYS/include/ |
H A D | wav_file.h | 151 char dataType[4]; member in struct:WAV_HEADER
|
/external/deqp/modules/gles2/functional/ |
H A D | es2fTextureSizeTests.cpp | 53 Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps); 76 Texture2DSizeCase::Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps) argument 80 , m_dataType (dataType) 168 TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps); 196 TextureCubeSizeCase::TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps) argument 200 , m_dataType (dataType) 364 deUint32 dataType; member in struct:deqp::gles2::Functional::__anon3222 390 formats[formatNdx].format, formats[formatNdx].dataType, 413 formats[formatNdx].format, formats[formatNdx].dataType,
|
H A D | es2fTextureWrapTests.cpp | 59 TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 format, deUint32 dataType, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, int width, int height); 89 TextureWrapCase::TextureWrapCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* description, deUint32 format, deUint32 dataType, deUint32 wrapS, deUint32 wrapT, deUint32 minFilter, deUint32 magFilter, int width, int height) argument 94 , m_dataType (dataType) 272 deUint32 dataType; member in struct:deqp::gles2::Functional::__anon3230 302 formats[format].format, formats[format].dataType,
|
H A D | es2fDefaultVertexAttributeTests.cpp | 165 AttributeCase (Context& ctx, const char* name, const char* desc, const char* funcName, bool normalizing, bool useNegative, glu::DataType dataType); 168 static AttributeCase* create (Context& ctx, glu::DataType dataType); 198 AttributeCase::AttributeCase (Context& ctx, const char* name, const char* desc, const char* funcName, bool normalizing, bool useNegative, glu::DataType dataType) argument 203 , m_dataType (dataType) 213 AttributeCase* AttributeCase::create (Context& ctx, glu::DataType dataType) argument 221 dataType); 490 glu::DataType dataType; member in struct:deqp::gles2::Functional::Target 512 #define ADD_CASE(X) group->addChild(AttributeCase::create<X>(m_context, floatTargets[targetNdx].dataType))
|
H A D | es2fTextureFormatTests.cpp | 69 Texture2DFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height); 91 Texture2DFormatCase::Texture2DFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height) argument 95 , m_dataType (dataType) 207 TextureCubeFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height); 235 TextureCubeFormatCase::TextureCubeFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height) argument 239 , m_dataType (dataType) 632 deUint32 dataType; member in struct:deqp::gles2::Functional::__anon3211 648 deUint32 dataType = texFormats[formatNdx].dataType; local 650 string descriptionBase = string(glu::getPixelFormatName(format)) + ", " + glu::getTypeName(dataType); [all...] |
H A D | es2fShaderIndexingTests.cpp | 113 static ShaderEvalFunc getArrayCoordsEvalFunc (DataType dataType) argument 115 if (dataType == TYPE_FLOAT) return evalArrayCoordsFloat; 116 else if (dataType == TYPE_FLOAT_VEC2) return evalArrayCoordsVec2; 117 else if (dataType == TYPE_FLOAT_VEC3) return evalArrayCoordsVec3; 118 else if (dataType == TYPE_FLOAT_VEC4) return evalArrayCoordsVec4; 129 static ShaderEvalFunc getArrayUniformEvalFunc (DataType dataType) argument 131 if (dataType == TYPE_FLOAT) return evalArrayUniformFloat; 132 else if (dataType == TYPE_FLOAT_VEC2) return evalArrayUniformVec2; 133 else if (dataType == TYPE_FLOAT_VEC3) return evalArrayUniformVec3; 134 else if (dataType 638 getVectorSubscriptEvalFunc(DataType dataType) argument 824 getMatrixSubscriptEvalFunc(DataType dataType) argument [all...] |
H A D | es2fTextureFilteringTests.cpp | 63 Texture2DFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 format, deUint32 dataType, int width, int height); 117 Texture2DFilteringCase::Texture2DFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 format, deUint32 dataType, int width, int height) argument 126 , m_dataType (dataType) 326 TextureCubeFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 format, deUint32 dataType, int width, int height); 380 TextureCubeFilteringCase::TextureCubeFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 format, deUint32 dataType, int width, int height) argument 389 , m_dataType (dataType) 686 deUint32 dataType; member in struct:deqp::gles2::Functional::__anon3210 729 formats[format].format, formats[format].dataType, 785 formats[format].format, formats[format].dataType,
|
/external/deqp/modules/gles3/functional/ |
H A D | es3fFboDepthbufferTests.cpp | 112 const deUint32 dataType = GL_UNSIGNED_BYTE; local 116 tcu::TextureLevel data (glu::mapGLTransferFormat(format, dataType), texW, texH, 1); 126 glTexImage2D(GL_TEXTURE_2D, 0, format, texW, texH, 0, format, dataType, data.getAccess().getDataPtr()); 182 glTexImage2D(GL_TEXTURE_2D, 0, m_format, m_width, m_height, 0, transferFmt.format, transferFmt.dataType, DE_NULL); 268 glTexImage2D(GL_TEXTURE_2D, 0, m_format, m_width, m_height, 0, transferFmt.format, transferFmt.dataType, DE_NULL);
|
H A D | es3fTextureSizeTests.cpp | 53 Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps); 76 Texture2DSizeCase::Texture2DSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps) argument 80 , m_dataType (dataType) 168 TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps); 196 TextureCubeSizeCase::TextureCubeSizeCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const char* name, const char* description, deUint32 format, deUint32 dataType, int width, int height, bool mipmaps) argument 200 , m_dataType (dataType) 364 deUint32 dataType; member in struct:deqp::gles3::Functional::__anon3408 390 formats[formatNdx].format, formats[formatNdx].dataType, 413 formats[formatNdx].format, formats[formatNdx].dataType,
|
H A D | es3fTextureSwizzleTests.cpp | 79 Texture2DSwizzleCase (Context& context, const char* name, const char* description, deUint32 internalFormat, deUint32 format, deUint32 dataType, deUint32 swizzleR, deUint32 swizzleG, deUint32 swizzleB, deUint32 swizzleA); 102 Texture2DSwizzleCase::Texture2DSwizzleCase (Context& context, const char* name, const char* description, deUint32 internalFormat, deUint32 format, deUint32 dataType, deUint32 swizzleR, deUint32 swizzleG, deUint32 swizzleB, deUint32 swizzleA) argument 106 , m_dataType (dataType) 240 deUint32 dataType; member in struct:deqp::gles3::Functional::__anon3427 335 deUint32 dataType = formats[fmtNdx].dataType; local 337 multiChannelGroup->addChild(new Texture2DSwizzleCase(m_context, name.c_str(), "Multi-channel swizzle", intFormat, format, dataType, swzR, swzG, swzB, swzA));
|
/external/deqp/modules/gles31/functional/ |
H A D | es31fFboColorbufferTests.cpp | 174 glTexImage3D(GL_TEXTURE_CUBE_MAP_ARRAY, 0, m_format, size.x(), size.y(), size.z(), 0, transferFmt.format, transferFmt.dataType, DE_NULL); 206 const deUint32 dataType = GL_UNSIGNED_BYTE; local 212 tcu::TextureLevel data (glu::mapGLTransferFormat(format, dataType), texW, texH, 1); 222 glTexImage2D(GL_TEXTURE_2D, 0, format, texW, texH, 0, format, dataType, data.getAccess().getDataPtr());
|
H A D | es31fShaderBuiltinConstantTests.cpp | 167 glu::DataType dataType, 178 shaderSpec.outputs.push_back(Symbol("result", glu::VarType(dataType, glu::PRECISION_HIGHP))); 165 createGetConstantExecutor(const glu::RenderContext& renderCtx, glu::ShaderType shaderType, glu::DataType dataType, const std::string& varName, const std::string& extName) argument
|
H A D | es31fTextureFormatTests.cpp | 73 TextureCubeArrayFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& renderCtxInfo, const char* name, const char* description, deUint32 format, deUint32 dataType, int size, int depth); 102 TextureCubeArrayFormatCase::TextureCubeArrayFormatCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& renderCtxInfo, const char* name, const char* description, deUint32 format, deUint32 dataType, int size, int depth) argument 107 , m_dataType (dataType) 399 deUint32 dataType; member in struct:deqp::gles31::Functional::__anon3715 415 deUint32 dataType = texFormats[formatNdx].dataType; local 417 string descriptionBase = string(glu::getPixelFormatName(format)) + ", " + glu::getTypeName(dataType); 419 unsizedGroup->addChild(new TextureCubeArrayFormatCase (m_testCtx, m_context.getRenderContext(), m_context.getContextInfo(), (nameBase + "_cube_array_pot").c_str(), (descriptionBase + ", GL_TEXTURE_CUBE_MAP_ARRAY").c_str(), format, dataType, 64, 12)); 420 unsizedGroup->addChild(new TextureCubeArrayFormatCase (m_testCtx, m_context.getRenderContext(), m_context.getContextInfo(), (nameBase + "_cube_array_npot").c_str(), (descriptionBase + ", GL_TEXTURE_CUBE_MAP_ARRAY").c_str(), format, dataType, 64, 12));
|
/external/mesa3d/src/mesa/main/ |
H A D | texgetimage.c | 432 const GLenum dataType = _mesa_get_format_datatype(texImage->TexFormat); local 440 if (dataType == GL_FLOAT || 441 dataType == GL_SIGNED_NORMALIZED ||
|
/external/aac/libAACenc/src/ |
H A D | aacenc.h | 219 EXT_PAYLOAD_TYPE dataType; /* extension payload data type */ member in struct:__anon69
|
/external/deqp/modules/glshared/ |
H A D | glsShaderLibraryCase.hpp | 90 glu::DataType dataType; member in struct:deqp::gls::sl::ShaderCase::Value 92 std::vector<Element> elements; // Scalar values (length dataType.scalarSize * arrayLength).
|
/external/deqp/modules/gles2/accuracy/ |
H A D | es2aTextureFilteringTests.cpp | 56 Texture2DFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 format, deUint32 dataType, int width, int height); 88 Texture2DFilteringCase::Texture2DFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 format, deUint32 dataType, int width, int height) argument 97 , m_dataType (dataType) 317 TextureCubeFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 format, deUint32 dataType, int width, int height); 349 TextureCubeFilteringCase::TextureCubeFilteringCase (tcu::TestContext& testCtx, glu::RenderContext& renderCtx, const glu::ContextInfo& ctxInfo, const char* name, const char* desc, deUint32 minFilter, deUint32 magFilter, deUint32 wrapS, deUint32 wrapT, deUint32 format, deUint32 dataType, int width, int height) argument 358 , m_dataType (dataType) 703 deUint32 dataType; member in struct:deqp::gles2::Accuracy::__anon3147 744 formats[format].format, formats[format].dataType, 778 formats[format].format, formats[format].dataType,
|