Browse Source

Platform: no need to include GL headers just for GL_TRUE.

It is, always was and always will be defined as 1, so why bother.
pull/278/head
Vladimír Vondruš 13 years ago
parent
commit
fa7665d63e
  1. 2
      src/Platform/NaClApplication.h

2
src/Platform/NaClApplication.h

@ -454,7 +454,7 @@ namespace Implementation {
}
inline bool Init() override {
return glInitializePPAPI(get_browser_interface()) == GL_TRUE;
return glInitializePPAPI(get_browser_interface());
}
inline pp::Instance* CreateInstance(PP_Instance instance) {

Loading…
Cancel
Save