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

0029529: Volume Rendering - crash on re-displaying the object

Added missing getters: OpenGl_TextureBufferArb::TextureFormat() and OpenGl_ShaderManager::OitState().
This commit is contained in:
kgv 2018-03-01 20:10:46 +03:00 committed by bugmaster
parent c40eb6b950
commit 726b5d9e92
2 changed files with 8 additions and 9 deletions

View File

@ -289,6 +289,9 @@ public:
public: public:
//! Returns state of OIT uniforms.
const OpenGl_OitState& OitState() const { return myOitState; }
//! Set the state of OIT rendering pass. //! Set the state of OIT rendering pass.
//! @param theToEnableOitWrite [in] flag indicating whether the special output should be written for OIT algorithm. //! @param theToEnableOitWrite [in] flag indicating whether the special output should be written for OIT algorithm.
//! @param theDepthFactor [in] the scalar factor of depth influence to the fragment's coverage. //! @param theDepthFactor [in] the scalar factor of depth influence to the fragment's coverage.

View File

@ -30,7 +30,7 @@
//! are declared in this class. //! are declared in this class.
class OpenGl_TextureBufferArb : public OpenGl_VertexBuffer class OpenGl_TextureBufferArb : public OpenGl_VertexBuffer
{ {
DEFINE_STANDARD_RTTIEXT(OpenGl_TextureBufferArb, OpenGl_VertexBuffer)
public: public:
//! Helpful constants //! Helpful constants
@ -99,20 +99,16 @@ public:
const Graphic3d_TextureUnit theTextureUnit) const; const Graphic3d_TextureUnit theTextureUnit) const;
//! Returns name of TBO. //! Returns name of TBO.
GLuint TextureId() const GLuint TextureId() const { return myTextureId; }
{
return myTextureId; //! Returns internal texture format.
} GLenum TextureFormat() const { return myTexFormat; }
protected: protected:
GLuint myTextureId; //!< texture id GLuint myTextureId; //!< texture id
GLenum myTexFormat; //!< internal texture format GLenum myTexFormat; //!< internal texture format
public:
DEFINE_STANDARD_RTTIEXT(OpenGl_TextureBufferArb,OpenGl_VertexBuffer) // Type definition
}; };
DEFINE_STANDARD_HANDLE(OpenGl_TextureBufferArb, OpenGl_VertexBuffer) DEFINE_STANDARD_HANDLE(OpenGl_TextureBufferArb, OpenGl_VertexBuffer)