Lines Matching defs:height
105 Texture2D::Texture2D (const RenderContext& context, deUint32 format, deUint32 dataType, int width, int height)
109 , m_refTexture (mapGLTransferFormat(format, dataType), width, height, isES2Context(context.getType()))
117 Texture2D::Texture2D (const RenderContext& context, deUint32 sizedFormat, int width, int height)
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)
529 Texture2DArray::Texture2DArray (const RenderContext& context, deUint32 format, deUint32 dataType, int width, int height, int numLevels)
533 , m_refTexture (mapGLTransferFormat(format, dataType), width, height, numLevels)
542 Texture2DArray::Texture2DArray (const RenderContext& context, deUint32 sizedFormat, int width, int height, int numLevels)
546 , m_refTexture (mapGLInternalFormat(sizedFormat), width, height, numLevels)
645 Texture3D::Texture3D (const RenderContext& context, deUint32 format, deUint32 dataType, int width, int height, int depth)
649 , m_refTexture (mapGLTransferFormat(format, dataType), width, height, depth)
658 Texture3D::Texture3D (const RenderContext& context, deUint32 sizedFormat, int width, int height, int depth)
662 , m_refTexture (mapGLInternalFormat(sizedFormat), width, height, depth)