mirror of https://github.com/xemu-project/xemu.git
Give VSH and PSH types a prefix
This commit is contained in:
parent
d99880dac6
commit
811673cfde
|
@ -1337,12 +1337,12 @@ typedef struct ShaderState {
|
|||
bool alphakill[4];
|
||||
|
||||
bool alpha_test;
|
||||
enum AlphaFunc alpha_func;
|
||||
enum PshAlphaFunc alpha_func;
|
||||
|
||||
bool texture_matrix_enable[4];
|
||||
enum Texgen texgen[4][4];
|
||||
enum VshTexgen texgen[4][4];
|
||||
|
||||
enum Skinning skinning;
|
||||
enum VshSkinning skinning;
|
||||
|
||||
bool normalization;
|
||||
|
||||
|
|
|
@ -204,7 +204,7 @@ struct PixelShader {
|
|||
bool alphakill[4];
|
||||
|
||||
bool alpha_test;
|
||||
enum AlphaFunc alpha_func;
|
||||
enum PshAlphaFunc alpha_func;
|
||||
|
||||
QString *varE, *varF;
|
||||
QString *code;
|
||||
|
@ -769,7 +769,7 @@ QString *psh_translate(uint32_t combiner_control, uint32_t shader_stage_program,
|
|||
const bool rect_tex[4],
|
||||
const bool compare_mode[4][4],
|
||||
const bool alphakill[4],
|
||||
bool alpha_test, enum AlphaFunc alpha_func)
|
||||
bool alpha_test, enum PshAlphaFunc alpha_func)
|
||||
{
|
||||
int i;
|
||||
struct PixelShader ps;
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include "qapi/qmp/qstring.h"
|
||||
|
||||
enum AlphaFunc {
|
||||
enum PshAlphaFunc {
|
||||
ALPHA_FUNC_NEVER,
|
||||
ALPHA_FUNC_LESS,
|
||||
ALPHA_FUNC_EQUAL,
|
||||
|
@ -47,6 +47,6 @@ QString *psh_translate(uint32_t combiner_control, uint32_t shader_stage_program,
|
|||
const bool rect_tex[4],
|
||||
const bool compare_mode[4][4],
|
||||
const bool alphakill[4],
|
||||
bool alpha_test, enum AlphaFunc alpha_func);
|
||||
bool alpha_test, enum PshAlphaFunc alpha_func);
|
||||
|
||||
#endif
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include "qapi/qmp/qstring.h"
|
||||
|
||||
enum Texgen {
|
||||
enum VshTexgen {
|
||||
TEXGEN_DISABLE,
|
||||
TEXGEN_EYE_LINEAR,
|
||||
TEXGEN_OBJECT_LINEAR,
|
||||
|
@ -33,7 +33,7 @@ enum Texgen {
|
|||
TEXGEN_REFLECTION_MAP,
|
||||
};
|
||||
|
||||
enum Skinning {
|
||||
enum VshSkinning {
|
||||
SKINNING_OFF,
|
||||
SKINNING_1WEIGHTS,
|
||||
SKINNING_2WEIGHTS,
|
||||
|
|
Loading…
Reference in New Issue