| 12345678910111213141516171819202122 |
- //********************************** Banshee Engine (www.banshee3d.com) **************************************************//
- //**************** Copyright (c) 2016 Marko Pintera ([email protected]). All rights reserved. **********************//
- #pragma once
- #include <windows.h>
- #include <BsGLPrerequisites.h>
- namespace bs { namespace ct
- {
- /** @addtogroup GL
- * @{
- */
- class Win32GLSupport;
- class Win32Context;
- class Win32RenderWindow;
- /** Retrieves last Windows API error and returns a description of it. */
- String translateWGLError();
- /** @} */
- }}
|