[Video] Rename grLoadGammaTable to gfxLoadGammaTable
This commit is contained in:
parent
c8174a3ee9
commit
bd904ede5a
|
@ -638,7 +638,7 @@ void ReleaseGfx()
|
||||||
if (voodoo.gamma_correction)
|
if (voodoo.gamma_correction)
|
||||||
{
|
{
|
||||||
if (voodoo.gamma_table_r)
|
if (voodoo.gamma_table_r)
|
||||||
grLoadGammaTable(voodoo.gamma_table_size, voodoo.gamma_table_r, voodoo.gamma_table_g, voodoo.gamma_table_b);
|
gfxLoadGammaTable(voodoo.gamma_table_size, voodoo.gamma_table_r, voodoo.gamma_table_g, voodoo.gamma_table_b);
|
||||||
else
|
else
|
||||||
guGammaCorrectionRGB(1.3f, 1.3f, 1.3f); //1.3f is default 3dfx gamma for everything but desktop
|
guGammaCorrectionRGB(1.3f, 1.3f, 1.3f); //1.3f is default 3dfx gamma for everything but desktop
|
||||||
voodoo.gamma_correction = 0;
|
voodoo.gamma_correction = 0;
|
||||||
|
@ -1425,7 +1425,7 @@ void newSwapBuffers()
|
||||||
if (voodoo.gamma_correction)
|
if (voodoo.gamma_correction)
|
||||||
{
|
{
|
||||||
if (voodoo.gamma_table_r)
|
if (voodoo.gamma_table_r)
|
||||||
grLoadGammaTable(voodoo.gamma_table_size, voodoo.gamma_table_r, voodoo.gamma_table_g, voodoo.gamma_table_b);
|
gfxLoadGammaTable(voodoo.gamma_table_size, voodoo.gamma_table_r, voodoo.gamma_table_g, voodoo.gamma_table_b);
|
||||||
else
|
else
|
||||||
guGammaCorrectionRGB(1.3f, 1.3f, 1.3f); //1.3f is default 3dfx gamma for everything but desktop
|
guGammaCorrectionRGB(1.3f, 1.3f, 1.3f); //1.3f is default 3dfx gamma for everything but desktop
|
||||||
voodoo.gamma_correction = 0;
|
voodoo.gamma_correction = 0;
|
||||||
|
|
|
@ -1674,8 +1674,7 @@ void gfxEnable(GrEnableMode_t mode)
|
||||||
UMAmode = 1;
|
UMAmode = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
FX_ENTRY void FX_CALL
|
void gfxLoadGammaTable(FxU32 nentries, FxU32 *red, FxU32 *green, FxU32 *blue)
|
||||||
grLoadGammaTable(FxU32 nentries, FxU32 *red, FxU32 *green, FxU32 *blue)
|
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1961,8 +1961,7 @@ static void CorrectGamma(const FxU16 aGammaRamp[3][256])
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
FX_ENTRY void FX_CALL
|
void gfxLoadGammaTable(FxU32 /*nentries*/, FxU32 *red, FxU32 *green, FxU32 *blue)
|
||||||
grLoadGammaTable(FxU32 /*nentries*/, FxU32 *red, FxU32 *green, FxU32 *blue)
|
|
||||||
{
|
{
|
||||||
WriteTrace(TraceGlitch, TraceDebug, "-");
|
WriteTrace(TraceGlitch, TraceDebug, "-");
|
||||||
FxU16 aGammaRamp[3][256];
|
FxU16 aGammaRamp[3][256];
|
||||||
|
|
|
@ -65,6 +65,7 @@ FxBool gfxLfbReadRegion(GrBuffer_t src_buffer, FxU32 src_x, FxU32 src_y, FxU32 s
|
||||||
FxBool gfxLfbWriteRegion(GrBuffer_t dst_buffer, FxU32 dst_x, FxU32 dst_y, GrLfbSrcFmt_t src_format, FxU32 src_width, FxU32 src_height, FxBool pixelPipeline, FxI32 src_stride, void *src_data);
|
FxBool gfxLfbWriteRegion(GrBuffer_t dst_buffer, FxU32 dst_x, FxU32 dst_y, GrLfbSrcFmt_t src_format, FxU32 src_width, FxU32 src_height, FxBool pixelPipeline, FxI32 src_stride, void *src_data);
|
||||||
FxU32 gfxTexCalcMemRequired(GrLOD_t lodmin, GrLOD_t lodmax, GrAspectRatio_t aspect, GrTextureFormat_t fmt);
|
FxU32 gfxTexCalcMemRequired(GrLOD_t lodmin, GrLOD_t lodmax, GrAspectRatio_t aspect, GrTextureFormat_t fmt);
|
||||||
void gfxEnable(GrEnableMode_t mode);
|
void gfxEnable(GrEnableMode_t mode);
|
||||||
|
void gfxLoadGammaTable(FxU32 nentries, FxU32 *red, FxU32 *green, FxU32 *blue);
|
||||||
|
|
||||||
extern uint32_t nbTextureUnits;
|
extern uint32_t nbTextureUnits;
|
||||||
extern uint32_t g_scr_res_x, g_scr_res_y, g_res_x, g_res_y;
|
extern uint32_t g_scr_res_x, g_scr_res_y, g_res_x, g_res_y;
|
||||||
|
|
Loading…
Reference in New Issue