55 lines
1.1 KiB
C
Raw Normal View History

2016-11-06 19:03:08 +01:00
/* RetroArch - A frontend for libretro.
* Copyright (C) 2014-2016 - Ali Bouhlel
*
* 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/>.
*/
2016-11-05 15:05:46 +01:00
#ifndef TEX_SHADER_H
#define TEX_SHADER_H
2018-01-04 17:38:04 +01:00
#include <wiiu/shader_utils.h>
2016-11-05 15:05:46 +01:00
#ifdef __cplusplus
extern "C" {
#endif
typedef struct
{
struct
{
float x;
float y;
}pos;
struct
{
float u;
float v;
}coord;
struct
{
float r;
float g;
float b;
float a;
}color;
}tex_shader_vertex_t;
2018-01-04 17:38:04 +01:00
extern GX2Shader tex_shader;
2016-11-05 15:05:46 +01:00
#ifdef __cplusplus
}
#endif
2018-01-06 09:44:03 -03:00
#endif /* TEX_SHADER_H */