From 44d4c9e58687f4b2ad2793c6c89fb4bea56ab910 Mon Sep 17 00:00:00 2001 From: omy Date: Thu, 28 May 2015 10:27:24 +0300 Subject: [PATCH] 0026276: Visualization, TKOpenGl - add missing Standard_EXPORT to matrix management methods in OpenGl_Context These methods are useful for applying matrices transformations. --- src/OpenGl/OpenGl_Context.hxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/OpenGl/OpenGl_Context.hxx b/src/OpenGl/OpenGl_Context.hxx index 47caab9b13..55eecc953c 100644 --- a/src/OpenGl/OpenGl_Context.hxx +++ b/src/OpenGl/OpenGl_Context.hxx @@ -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: