(360) Build fixes

This commit is contained in:
twinaphex 2013-03-09 01:02:30 +01:00
parent 1804217fd6
commit 037edbd247
3 changed files with 10 additions and 9 deletions

View File

@ -29,6 +29,15 @@
#define MAX_EGLIMAGE_TEXTURES 32
#ifdef HAVE_FBO
enum fbo_option
{
FBO_DEINIT = 0,
FBO_INIT,
FBO_REINIT
};
#endif
enum gfx_ctx_api
{
GFX_CTX_OPENGL_API,

View File

@ -164,15 +164,6 @@ enum gl_scale_type
RARCH_SCALE_VIEWPORT
};
#ifdef HAVE_FBO
enum fbo_option
{
FBO_DEINIT = 0,
FBO_INIT,
FBO_REINIT
};
#endif
struct gl_fbo_scale
{
enum gl_scale_type type_x;

View File

@ -26,6 +26,7 @@
#include "../gfx/shader_hlsl.h"
#endif
#include "../console/rarch_console_video.h"
#include "./../gfx/gfx_context.h"
#include "../general.h"
#include "../message.h"