Cleanup.
This commit is contained in:
Родитель
2b77088a38
Коммит
35a30c3135
|
@ -429,7 +429,10 @@ int _main_(int _argc, char** _argv)
|
|||
uint32_t width = 1280;
|
||||
uint32_t height = 720;
|
||||
uint32_t debug = BGFX_DEBUG_TEXT;
|
||||
uint32_t reset = BGFX_RESET_VSYNC;
|
||||
uint32_t reset = 0
|
||||
| BGFX_RESET_VSYNC
|
||||
| BGFX_RESET_MSAA_X16
|
||||
;
|
||||
|
||||
bgfx::init(args.m_type, args.m_pciId);
|
||||
bgfx::reset(width, height, reset);
|
||||
|
|
|
@ -313,7 +313,10 @@ class Wireframe : public entry::AppI
|
|||
m_width = 1280;
|
||||
m_height = 720;
|
||||
m_debug = BGFX_DEBUG_TEXT;
|
||||
m_reset = BGFX_RESET_VSYNC;
|
||||
m_reset = 0
|
||||
| BGFX_RESET_VSYNC
|
||||
| BGFX_RESET_MSAA_X16
|
||||
;
|
||||
|
||||
bgfx::init(args.m_type, args.m_pciId);
|
||||
bgfx::reset(m_width, m_height, m_reset);
|
||||
|
|
Загрузка…
Ссылка в новой задаче