2014-05-08 13:39:12 -04:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2015-01-07 18:06:50 +01:00
|
|
|
* Copyright (C) 2011-2015 - Daniel De Matteis
|
2014-05-08 13:39:12 -04:00
|
|
|
*
|
|
|
|
* 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2014-10-02 13:21:45 +02:00
|
|
|
#include "shader_context.h"
|
2014-10-02 00:45:11 +02:00
|
|
|
#include "../../retroarch_logger.h"
|
2014-10-02 13:42:40 +02:00
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "../../config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
static const shader_backend_t *shader_ctx_drivers[] = {
|
|
|
|
#ifdef HAVE_CG
|
|
|
|
&gl_cg_backend,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_GLSL
|
|
|
|
&gl_glsl_backend,
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_HLSL
|
|
|
|
&hlsl_backend,
|
|
|
|
#endif
|
|
|
|
&shader_null_backend,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const shader_backend_t *shader_ctx_find_driver(const char *ident)
|
|
|
|
{
|
|
|
|
unsigned i;
|
2015-01-10 03:04:10 +01:00
|
|
|
|
2014-10-02 13:42:40 +02:00
|
|
|
for (i = 0; shader_ctx_drivers[i]; i++)
|
|
|
|
{
|
|
|
|
if (strcmp(shader_ctx_drivers[i]->ident, ident) == 0)
|
|
|
|
return shader_ctx_drivers[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
const shader_backend_t *shader_ctx_init_first(void)
|
|
|
|
{
|
|
|
|
unsigned i;
|
2015-01-10 03:04:10 +01:00
|
|
|
|
2014-10-02 13:42:40 +02:00
|
|
|
for (i = 0; shader_ctx_drivers[i]; i++)
|
|
|
|
return shader_ctx_drivers[i];
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|