]> OCCT Git - occt.git/commitdiff
0026276: Visualization, TKOpenGl - add missing Standard_EXPORT to matrix management...
authoromy <omy@opencascade.com>
Thu, 28 May 2015 07:27:24 +0000 (10:27 +0300)
committerbugmaster <bugmaster@opencascade.com>
Thu, 4 Jun 2015 09:18:54 +0000 (12:18 +0300)
These methods are useful for applying matrices transformations.

src/OpenGl/OpenGl_Context.hxx

index 47caab9b13d95fc57f7662e6f6b51f49d8ba17a2..55eecc953c54baf8a031f7afc17f84c3bc480175 100644 (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: