Sigh, bitten by precompiled headers, wxLogDebug requires <wx/log.h>.

Originally committed to SVN as r3630.
This commit is contained in:
Amar Takhar 2009-10-06 15:47:43 +00:00
parent c204c766ec
commit ac260ec47b
1 changed files with 8 additions and 5 deletions

View File

@ -34,6 +34,14 @@
/// @ingroup video
///
#ifndef AGI_PRE
#include <wx/log.h>
#endif
#include "video_out_gl.h"
#include "utils.h"
#include "video_frame.h"
#ifdef __APPLE__
#include <OpenGL/GL.h>
#include <OpenGL/glu.h>
@ -42,11 +50,6 @@
#include <GL/glu.h>
#endif
#include "video_out_gl.h"
#include "utils.h"
#include "video_frame.h"
#ifndef GL_CLAMP_TO_EDGE
#define GL_CLAMP_TO_EDGE 0x812F
#endif