scenewalker-libretro/gl.hpp

108 lines
3.0 KiB
C++
Raw Permalink Normal View History

2013-11-27 20:56:41 +00:00
/*
* Scenewalker Tech demo
* Copyright (C) 2013 - Hans-Kristian Arntzen
* Copyright (C) 2013 - Daniel De Matteis
*
* InstancingViewer is free software: you can redistribute it and/or modify it under the terms
* of the GNU General Public License as published by the Free Software Found-
* ation, either version 3 of the License, or (at your option) any later version.
*
* InstancingViewer is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
* PURPOSE. See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along with InstancingViewer.
* If not, see <http://www.gnu.org/licenses/>.
*/
2013-05-10 16:59:30 +00:00
#ifndef GL_HPP__
#define GL_HPP__
#if defined(_WIN32) && !defined(_XBOX)
#include <windows.h>
#endif
2013-05-10 16:59:30 +00:00
#define GL_GLEXT_PROTOTYPES
#if defined(GLES)
2013-05-12 12:00:58 +00:00
#ifdef IOS
#include <OpenGLES/ES2/gl.h>
#else
2013-05-10 16:59:30 +00:00
#include <GLES2/gl2.h>
2013-05-12 12:00:58 +00:00
#endif
2013-05-12 14:08:57 +00:00
#elif defined(__APPLE__)
#include <OpenGL/gl.h>
#include <OpenGL/glext.h>
#elif defined(__CELLOS_LV2__)
#include <PSGL/psgl.h>
#include <PSGL/psglu.h>
#include <GLES/glext.h>
extern void _jsEnableVertexAttribArrayNV(GLuint index);
extern void _jsDisableVertexAttribArrayNV(GLuint index);
extern void _jsVertexAttribPointerNV(GLuint index,
GLint fsize, GLenum type,
GLboolean normalized,
GLsizei stride, const GLvoid* pointer);
#define glEnableVertexAttribArray _jsEnableVertexAttribArrayNV
#define glDisableVertexAttribArray _jsDisableVertexAttribArrayNV
#define glVertexAttribPointer _jsVertexAttribPointerNV
#define glGenerateMipmap glGenerateMipmapOES
#define glBindFramebuffer glBindFramebufferOES
#define GL_FRAMEBUFFER GL_FRAMEBUFFER_OES
2013-05-10 16:59:30 +00:00
#else
#include <GL/gl.h>
#include <GL/glext.h>
#endif
#include <map>
2013-05-11 17:58:05 +00:00
#include <stdio.h>
2013-05-11 18:31:37 +00:00
#include <string>
2013-05-10 16:59:30 +00:00
#include "libretro.h"
#include "shared.hpp"
2013-05-10 16:59:30 +00:00
#ifdef __GNUC__
#define decltype(type) typeof(type)
#endif
#ifdef GLES
#define SYM(sym) sym
#else
2013-05-10 16:59:30 +00:00
#define SYM(sym) (::GL::symbol<decltype(&sym)>(#sym))
#endif
2013-05-10 16:59:30 +00:00
namespace GL
{
// If true, GL context has been reset and all
// objects are invalid. Do not free their resources
// in destructors.
extern bool dead_state;
2013-05-10 16:59:30 +00:00
typedef std::map<std::string, retro_proc_address_t> SymMap;
SymMap& symbol_map();
void init_symbol_map();
// Discover and cache GL symbols on-the-fly.
// Avoids things like GLEW, and avoids typing out a billion symbol declarations.
2013-05-10 16:59:30 +00:00
void set_function_cb(retro_hw_get_proc_address_t);
retro_proc_address_t get_symbol(const std::string& str);
template<typename Func>
inline Func symbol(const std::string& sym)
{
std::map<std::string, retro_proc_address_t>& map = symbol_map();
2013-05-10 16:59:30 +00:00
retro_proc_address_t func = map[sym];
2013-05-10 16:59:30 +00:00
if (!func)
{
func = get_symbol(sym);
2013-12-16 12:21:30 +00:00
if (!func && log_cb)
log_cb(RETRO_LOG_ERROR, "Didn't find GL symbol: %s\n", sym.c_str());
2013-05-10 16:59:30 +00:00
}
return reinterpret_cast<Func>(func);
}
}
#endif