From 486dc3adecb24c9d1734ad7129c18ddfe505ede7 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Thu, 2 Oct 2014 12:50:27 +0200 Subject: [PATCH] Get rid of shader_cg.h header --- gfx/gl.c | 4 ---- gfx/shader/shader_cg.c | 2 +- gfx/shader/shader_cg.h | 23 ----------------------- 3 files changed, 1 insertion(+), 28 deletions(-) delete mode 100644 gfx/shader/shader_cg.h diff --git a/gfx/gl.c b/gfx/gl.c index ef522cc41c..add11141a8 100644 --- a/gfx/gl.c +++ b/gfx/gl.c @@ -41,10 +41,6 @@ #include "gfx_context.h" #include "../compat/strl.h" -#ifdef HAVE_CG -#include "shader/shader_cg.h" -#endif - #ifdef HAVE_GLSL #include "shader/shader_glsl.h" #endif diff --git a/gfx/shader/shader_cg.c b/gfx/shader/shader_cg.c index a60a8b3c97..025fac5174 100644 --- a/gfx/shader/shader_cg.c +++ b/gfx/shader/shader_cg.c @@ -22,7 +22,7 @@ #include "shader_gl_common.h" #endif -#include "shader_cg.h" +#include #include "shader_common.h" #include #include diff --git a/gfx/shader/shader_cg.h b/gfx/shader/shader_cg.h deleted file mode 100644 index b6e21cd6ec..0000000000 --- a/gfx/shader/shader_cg.h +++ /dev/null @@ -1,23 +0,0 @@ -/* RetroArch - A frontend for libretro. - * Copyright (C) 2010-2014 - Hans-Kristian Arntzen - * - * RetroArch 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. - * - * RetroArch 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 RetroArch. - * If not, see . - */ - - -#ifndef __RARCH_CG_H -#define __RARCH_CG_H - -#include "shader_common.h" -#include - -#endif