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

@ -31,7 +31,7 @@ bool Display::create(DisplayDescription description)
return false;
}
if (!m_context->create(m_impl, description.mode.bpp)) {
if (!m_context->create(m_impl)) {
return false;
}