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

0026276: Visualization, TKOpenGl - add missing Standard_EXPORT to matrix management methods in OpenGl_Context

These methods are useful for applying matrices transformations.
This commit is contained in:
omy 2015-05-28 10:27:24 +03:00 committed by bugmaster
parent 5440a790de
commit 5e94009d83

View File

@ -435,16 +435,16 @@ public:
Standard_EXPORT Standard_Boolean SetGlNormalizeEnabled (Standard_Boolean isEnabled);
//! Applies matrix stored in ModelWorldState to OpenGl.
void ApplyModelWorldMatrix();
Standard_EXPORT void ApplyModelWorldMatrix();
//! Applies matrix stored in WorldViewState to OpenGl.
void ApplyWorldViewMatrix();
Standard_EXPORT void ApplyWorldViewMatrix();
//! Applies combination of matrices stored in ModelWorldState and WorldViewState to OpenGl.
void ApplyModelViewMatrix();
Standard_EXPORT void ApplyModelViewMatrix();
//! Applies matrix stored in ProjectionState to OpenGl.
void ApplyProjectionMatrix();
Standard_EXPORT void ApplyProjectionMatrix();
public: