1
0
Fork 0

GLContext: Remove bpp parameter from create()

Hardcode to 32 bits for now.
This commit is contained in:
Henrik Hautakoski 2016-02-17 13:28:17 +01:00
parent 8675018522
commit 2da2601149
4 changed files with 11 additions and 11 deletions

View file

@ -16,7 +16,7 @@ public :
virtual ~GLContext();
// Create a GLContext for this perticular display.
virtual bool create(const PlatformDisplay* display, unsigned int bpp) = 0;
virtual bool create(const PlatformDisplay* display) = 0;
virtual void destroy() = 0;