(Griffin) Ifdef changes / annotations

This commit is contained in:
Twinaphex 2012-05-28 05:19:04 +02:00
parent c5735e0aec
commit dac3713454

View File

@ -43,7 +43,7 @@ CONFIG FILE
/*============================================================ /*============================================================
VIDEO VIDEO CONTEXT
============================================================ */ ============================================================ */
#ifdef HAVE_VID_CONTEXT #ifdef HAVE_VID_CONTEXT
@ -56,21 +56,35 @@ VIDEO
#endif #endif
/*============================================================
VIDEO SHADERS
============================================================ */
#ifdef HAVE_CG #ifdef HAVE_CG
#include "../../gfx/shader_cg.c" #include "../../gfx/shader_cg.c"
#endif #endif
#ifdef HAVE_OPENGL
#include "../../gfx/gl.c"
#endif
#ifdef HAVE_HLSL #ifdef HAVE_HLSL
#include "../../gfx/shader_hlsl.c" #include "../../gfx/shader_hlsl.c"
#endif #endif
/*============================================================
VIDEO IMAGE
============================================================ */
#if defined(__CELLOS_LV2__) #if defined(__CELLOS_LV2__)
#include "../../ps3/image.c" #include "../../ps3/image.c"
#elif defined(_XBOX) #endif
/*============================================================
VIDEO DRIVER
============================================================ */
#ifdef HAVE_OPENGL
#include "../../gfx/gl.c"
#endif
#if defined(_XBOX)
#include "../../360/xdk360_video.cpp" #include "../../360/xdk360_video.cpp"
#elif defined(GEKKO) #elif defined(GEKKO)
#include "../../wii/video.c" #include "../../wii/video.c"
@ -100,7 +114,7 @@ INPUT
#endif #endif
/*============================================================ /*============================================================
SNES STATE STATE TRACKER
============================================================ */ ============================================================ */
#include "../../gfx/state_tracker.c" #include "../../gfx/state_tracker.c"
@ -203,7 +217,7 @@ THREAD
/*============================================================ /*============================================================
NETPLAY NETPLAY
============================================================ */ ============================================================ */
#ifndef GEKKO #ifdef HAVE_NETPLAY
#include "../../netplay.c" #include "../../netplay.c"
#endif #endif