]> git.saurik.com Git - wxWidgets.git/blobdiff - src/common/glcmn.cpp
Split intl.h into intl.h, language.h and translation.h.
[wxWidgets.git] / src / common / glcmn.cpp
index 61ad33848338c11ad9b48588cb6767dca5e6a84f..bcefc2c8fae3a2d44636aadc0f088336276997bc 100644 (file)
@@ -70,13 +70,15 @@ bool wxGLCanvasBase::SetColour(const wxString& colour)
         return false;
 
 #ifdef wxHAS_OPENGL_ES
-    wxGLAPI::glColor3f(col.Red() / 256., col.Green() / 256., col.Blue() / 256.);
+    wxGLAPI::glColor3f((GLfloat) (col.Red() / 256.), (GLfloat) (col.Green() / 256.), 
+                (GLfloat) (col.Blue() / 256.));
 #else
     GLboolean isRGBA;
     glGetBooleanv(GL_RGBA_MODE, &isRGBA);
     if ( isRGBA )
     {
-        glColor3f(col.Red() / 256., col.Green() / 256., col.Blue() / 256.);
+        glColor3f((GLfloat) (col.Red() / 256.), (GLfloat) (col.Green() / 256.), 
+                (GLfloat) (col.Blue() / 256.));
     }
     else // indexed colour
     {
@@ -217,7 +219,6 @@ void wxGLAPI::glFrustum(GLfloat left, GLfloat right, GLfloat bottom,
 #endif
 }
 
-
 void wxGLAPI::glBegin(GLenum mode)
 {
 #if wxUSE_OPENGL_EMULATION