This commit is contained in:
Branimir Karadžić 2016-03-05 11:38:32 -08:00
Родитель 2b77088a38
Коммит 35a30c3135
2 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -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);