Lines Matching refs:sizedFormat
63 Texture1D::Texture1D (const RenderContext& context, deUint32 sizedFormat, int width)
65 , m_format (sizedFormat)
66 , m_refTexture (mapGLInternalFormat(sizedFormat), width)
117 Texture2D::Texture2D (const RenderContext& context, deUint32 sizedFormat, int width, int height)
120 , m_format (sizedFormat)
121 , m_refTexture (mapGLInternalFormat(sizedFormat), width, height, isES2Context(context.getType()))
288 ImmutableTexture2D::ImmutableTexture2D (const RenderContext& context, deUint32 sizedFormat, int width, int height)
289 : Texture2D(context, sizedFormat, width, height)
486 Texture1DArray::Texture1DArray (const RenderContext& context, deUint32 sizedFormat, int width, int numLevels)
488 , m_format (sizedFormat)
489 , m_refTexture (mapGLInternalFormat(sizedFormat), width, numLevels)
542 Texture2DArray::Texture2DArray (const RenderContext& context, deUint32 sizedFormat, int width, int height, int numLevels)
545 , m_format (sizedFormat)
546 , m_refTexture (mapGLInternalFormat(sizedFormat), width, height, numLevels)
658 Texture3D::Texture3D (const RenderContext& context, deUint32 sizedFormat, int width, int height, int depth)
661 , m_format (sizedFormat)
662 , m_refTexture (mapGLInternalFormat(sizedFormat), width, height, depth)
782 TextureCubeArray::TextureCubeArray (const RenderContext& context, deUint32 sizedFormat, int size, int numLayers)
784 , m_format (sizedFormat)
785 , m_refTexture (mapGLInternalFormat(sizedFormat), size, numLayers)