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