OpenGL in prerequesites

This commit is contained in:
Eduardo Bart 2011-05-15 13:39:14 -03:00
parent 1ac08aa692
commit ca38f53e15
6 changed files with 6 additions and 16 deletions

View File

@ -23,8 +23,6 @@
#include <graphics/animatedtexture.h>
#include <GL/gl.h>
#include <core/engine.h>
#include <core/dispatcher.h>

View File

@ -26,10 +26,6 @@
#include <graphics/framebuffer.h>
#include <graphics/graphics.h>
#include <GL/gl.h>
#include <GL/glu.h>
#include <GL/glext.h>
PFNGLGENFRAMEBUFFERSPROC oglGenFramebuffers = 0;
PFNGLBINDFRAMEBUFFERPROC oglBindFramebuffer = 0;
PFNGLFRAMEBUFFERTEXTURE2DPROC oglFramebufferTexture2D = 0;

View File

@ -25,10 +25,6 @@
#include <prerequisites.h>
#include <graphics/graphics.h>
#include <GL/gl.h>
#include <GL/glu.h>
#include <GL/glext.h>
Graphics g_graphics;
void Graphics::init()

View File

@ -25,8 +25,6 @@
#include <prerequisites.h>
#include <graphics/texture.h>
#include <GL/gl.h>
Texture::Texture(int width, int height, int components, uchar *pixels)
{
m_size.setSize(width, height);

View File

@ -31,9 +31,6 @@
#include <physfs.h>
#include <GL/gl.h>
#include <GL/glext.h>
LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam);
struct Win32PlatformPrivate {

View File

@ -61,6 +61,11 @@ typedef int8_t int8;
#include <queue>
#include <iterator>
// OpenGL
#include <GL/gl.h>
#include <GL/glu.h>
#include <GL/glext.h>
// boost utilities
#include <boost/algorithm/string.hpp>
#include <boost/foreach.hpp>