1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0030505: Volume Rendering - Deferred lighting

Missing getter for OpenGl_Texture::mySizedFormat has been added.
This commit is contained in:
iko 2019-03-20 12:30:48 +03:00 committed by apn
parent d84b49c743
commit 4bcd07385e
2 changed files with 7 additions and 0 deletions

View File

@ -132,6 +132,7 @@
#define GL_RG16UI 0x823A
#define GL_RG32I 0x823B
#define GL_RG32UI 0x823C
#define GL_RG8_SNORM 0x8F95
#define GL_RGBA32UI 0x8D70
#define GL_RGB32UI 0x8D71
#define GL_RGBA16UI 0x8D76

View File

@ -338,6 +338,12 @@ public:
{
return myTextFormat;
}
//! @return texture format (sized)
GLint SizedFormat() const
{
return mySizedFormat;
}
//! Return true for GL_RED and GL_ALPHA formats.
bool IsAlpha() const