1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-06 00:55:50 +00:00

Throw error when failing to create graphics context

This commit is contained in:
scrawl 2015-06-10 18:46:51 +02:00
parent d52d0d9640
commit 35b2d91fb3

View File

@ -1,6 +1,7 @@
#include "sdlcursormanager.hpp"
#include <cassert>
#include <stdexcept>
#include <SDL_mouse.h>
#include <SDL_endian.h>
@ -48,6 +49,8 @@ namespace
traits->pbuffer = false;
_gc = osg::GraphicsContext::createGraphicsContext(traits.get());
if (!_gc)
throw std::runtime_error("Failed to create graphics context for image decompression");
}
if (_gc.valid())