[Video] Change GrStippleMode_t to gfxStippleMode_t
This commit is contained in:
parent
91cd65b72e
commit
cf0b8f2b6b
|
@ -1702,7 +1702,7 @@ void setPattern()
|
||||||
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST);
|
||||||
}
|
}
|
||||||
|
|
||||||
void gfxStippleMode(GrStippleMode_t mode)
|
void gfxStippleMode(gfxStippleMode_t mode)
|
||||||
{
|
{
|
||||||
WriteTrace(TraceGlitch, TraceDebug, "mode: %d", mode);
|
WriteTrace(TraceGlitch, TraceDebug, "mode: %d", mode);
|
||||||
switch (mode)
|
switch (mode)
|
||||||
|
|
|
@ -1661,7 +1661,7 @@ void setPattern()
|
||||||
grDisplayGLError("setPattern");
|
grDisplayGLError("setPattern");
|
||||||
}
|
}
|
||||||
|
|
||||||
void gfxStippleMode(GrStippleMode_t mode)
|
void gfxStippleMode(gfxStippleMode_t mode)
|
||||||
{
|
{
|
||||||
WriteTrace(TraceGlitch, TraceDebug, "mode: %d", mode);
|
WriteTrace(TraceGlitch, TraceDebug, "mode: %d", mode);
|
||||||
switch (mode)
|
switch (mode)
|
||||||
|
|
|
@ -34,7 +34,7 @@ void gfxFogGenerateLinear(float nearZ, float farZ);
|
||||||
void gfxFogColorValue(gfxColor_t fogcolor);
|
void gfxFogColorValue(gfxColor_t fogcolor);
|
||||||
void gfxChromakeyMode(gfxChromakeyMode_t mode);
|
void gfxChromakeyMode(gfxChromakeyMode_t mode);
|
||||||
void gfxChromakeyValue(gfxColor_t value);
|
void gfxChromakeyValue(gfxColor_t value);
|
||||||
void gfxStippleMode(GrStippleMode_t mode);
|
void gfxStippleMode(gfxStippleMode_t mode);
|
||||||
void gfxColorCombineExt(gfxCCUColor_t a, gfxCombineMode_t a_mode, gfxCCUColor_t b, gfxCombineMode_t b_mode, gfxCCUColor_t c, bool c_invert, gfxCCUColor_t d, bool d_invert, uint32_t shift, bool invert);
|
void gfxColorCombineExt(gfxCCUColor_t a, gfxCombineMode_t a_mode, gfxCCUColor_t b, gfxCombineMode_t b_mode, gfxCCUColor_t c, bool c_invert, gfxCCUColor_t d, bool d_invert, uint32_t shift, bool invert);
|
||||||
void gfxAlphaCombineExt(gfxACUColor_t a, gfxCombineMode_t a_mode, gfxACUColor_t b, gfxCombineMode_t b_mode, gfxACUColor_t c, bool c_invert, gfxACUColor_t d, bool d_invert, uint32_t shift, bool invert);
|
void gfxAlphaCombineExt(gfxACUColor_t a, gfxCombineMode_t a_mode, gfxACUColor_t b, gfxCombineMode_t b_mode, gfxACUColor_t c, bool c_invert, gfxACUColor_t d, bool d_invert, uint32_t shift, bool invert);
|
||||||
void gfxTexColorCombineExt(gfxChipID_t tmu, gfxTCCUColor_t a, gfxCombineMode_t a_mode, gfxTCCUColor_t b, gfxCombineMode_t b_mode, gfxTCCUColor_t c, bool c_invert, gfxTCCUColor_t d, bool d_invert, uint32_t shift, bool invert);
|
void gfxTexColorCombineExt(gfxChipID_t tmu, gfxTCCUColor_t a, gfxCombineMode_t a_mode, gfxTCCUColor_t b, gfxCombineMode_t b_mode, gfxTCCUColor_t c, bool c_invert, gfxTCCUColor_t d, bool d_invert, uint32_t shift, bool invert);
|
||||||
|
|
|
@ -17,6 +17,7 @@
|
||||||
|
|
||||||
typedef uint8_t gfxAlpha_t;
|
typedef uint8_t gfxAlpha_t;
|
||||||
typedef uint32_t gfxColor_t;
|
typedef uint32_t gfxColor_t;
|
||||||
|
typedef int32_t gfxStippleMode_t;
|
||||||
typedef uint32_t gfxCCUColor_t;
|
typedef uint32_t gfxCCUColor_t;
|
||||||
typedef uint32_t gfxACUColor_t;
|
typedef uint32_t gfxACUColor_t;
|
||||||
typedef uint32_t gfxTCCUColor_t;
|
typedef uint32_t gfxTCCUColor_t;
|
||||||
|
|
Loading…
Reference in New Issue