mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 16:49:12 +01:00
6e774f1b64
This is good hygiene, and also happens to be required to build Dolphin using Clang modules. (Under this setup, each header file becomes a module, and each #include is automatically translated to a module import. Recursive includes still leak through (by default), but modules are compiled independently, and can't depend on defines or types having previously been set up. The main reason to retrofit it onto Dolphin is compilation performance - no more textual includes whatsoever, rather than putting a few blessed common headers into a PCH. Unfortunately, I found multiple Clang bugs while trying to build Dolphin this way, so it's not ready yet, but I can start with this prerequisite.)
48 lines
2.0 KiB
C++
48 lines
2.0 KiB
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#include <string>
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_blend_func_extended.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_buffer_storage.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_debug_output.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_draw_elements_base_vertex.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_ES2_compatibility.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_framebuffer_object.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_get_program_binary.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_map_buffer_range.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_sample_shading.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_sampler_objects.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_sync.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_texture_multisample.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_uniform_buffer_object.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_vertex_array_object.h"
|
|
#include "VideoBackends/OGL/GLExtensions/ARB_viewport_array.h"
|
|
#include "VideoBackends/OGL/GLExtensions/gl_1_1.h"
|
|
#include "VideoBackends/OGL/GLExtensions/gl_1_2.h"
|
|
#include "VideoBackends/OGL/GLExtensions/gl_1_3.h"
|
|
#include "VideoBackends/OGL/GLExtensions/gl_1_4.h"
|
|
#include "VideoBackends/OGL/GLExtensions/gl_1_5.h"
|
|
#include "VideoBackends/OGL/GLExtensions/gl_2_0.h"
|
|
#include "VideoBackends/OGL/GLExtensions/gl_3_0.h"
|
|
#include "VideoBackends/OGL/GLExtensions/gl_3_1.h"
|
|
#include "VideoBackends/OGL/GLExtensions/gl_3_2.h"
|
|
#include "VideoBackends/OGL/GLExtensions/KHR_debug.h"
|
|
#include "VideoBackends/OGL/GLExtensions/NV_primitive_restart.h"
|
|
|
|
namespace GLExtensions
|
|
{
|
|
// Initializes the interface
|
|
bool Init();
|
|
|
|
// Function for checking if the hardware supports an extension
|
|
// example: if (GLExtensions::Supports("GL_ARB_multi_map"))
|
|
bool Supports(const std::string& name);
|
|
|
|
// Returns OpenGL version in format 430
|
|
u32 Version();
|
|
}
|