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
{
#endif
}
-
void wxGLAPI::glBegin(GLenum mode)
{
#if wxUSE_OPENGL_EMULATION