|
|
|
|
@ -727,32 +727,32 @@ enum class TextureFormat: GLenum {
|
|
|
|
|
late as of 1.8.0 { */ |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* BPTC compressed RGBA, normalized unsigned. |
|
|
|
|
* BPTC compressed RGB, unsigned float. |
|
|
|
|
* @requires_gl42 %Extension @extension{ARB,texture_compression_bptc} |
|
|
|
|
* @requires_gl BPTC texture compression is not available in OpenGL ES. |
|
|
|
|
*/ |
|
|
|
|
CompressedRGBABtpcUnorm = GL_COMPRESSED_RGBA_BPTC_UNORM_ARB, |
|
|
|
|
CompressedRGBBptcUnsignedFloat = GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB, |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* BPTC compressed sRGBA, normalized unsigned. |
|
|
|
|
* BPTC compressed RGB, signed float. |
|
|
|
|
* @requires_gl42 %Extension @extension{ARB,texture_compression_bptc} |
|
|
|
|
* @requires_gl BPTC texture compression is not available in OpenGL ES. |
|
|
|
|
*/ |
|
|
|
|
CompressedSRGBAlphaBtpcUnorm = GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB, |
|
|
|
|
CompressedRGBBptcSignedFloat = GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB, |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* BPTC compressed RGB, unsigned float. |
|
|
|
|
* BPTC compressed RGBA, normalized unsigned. |
|
|
|
|
* @requires_gl42 %Extension @extension{ARB,texture_compression_bptc} |
|
|
|
|
* @requires_gl BPTC texture compression is not available in OpenGL ES. |
|
|
|
|
*/ |
|
|
|
|
CompressedRGBBptcUnsignedFloat = GL_COMPRESSED_RGB_BPTC_UNSIGNED_FLOAT_ARB, |
|
|
|
|
CompressedRGBABptcUnorm = GL_COMPRESSED_RGBA_BPTC_UNORM_ARB, |
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* BPTC compressed RGB, signed float. |
|
|
|
|
* BPTC compressed sRGBA, normalized unsigned. |
|
|
|
|
* @requires_gl42 %Extension @extension{ARB,texture_compression_bptc} |
|
|
|
|
* @requires_gl BPTC texture compression is not available in OpenGL ES. |
|
|
|
|
*/ |
|
|
|
|
CompressedRGBBptcSignedFloat = GL_COMPRESSED_RGB_BPTC_SIGNED_FLOAT_ARB, |
|
|
|
|
CompressedSRGBAlphaBptcUnorm = GL_COMPRESSED_SRGB_ALPHA_BPTC_UNORM_ARB, |
|
|
|
|
|
|
|
|
|
/*}*/ |
|
|
|
|
#endif |
|
|
|
|
|