summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorNolan Check <Nolan.Check@gmail.com>2010-08-30 04:05:06 +0000
committerNolan Check <Nolan.Check@gmail.com>2010-08-30 04:05:06 +0000
commit6a695eff4970e450b4d17b9d20d7ea03f7ec0fea (patch)
tree1a276f5926af973d30a8c71224872a15cebf160b /Source/Core
parent014e87157cd090a01ebbe01eef0400992551136e (diff)
Remove more obsolete code
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6153 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/VideoCommon/Src/PixelShaderManager.cpp24
-rw-r--r--Source/Core/VideoCommon/Src/PixelShaderManager.h1
2 files changed, 4 insertions, 21 deletions
diff --git a/Source/Core/VideoCommon/Src/PixelShaderManager.cpp b/Source/Core/VideoCommon/Src/PixelShaderManager.cpp
index f349176684..304d3df941 100644
--- a/Source/Core/VideoCommon/Src/PixelShaderManager.cpp
+++ b/Source/Core/VideoCommon/Src/PixelShaderManager.cpp
@@ -34,7 +34,6 @@ static bool s_bFogColorChanged;
static bool s_bFogParamChanged;
static float lastDepthRange[2]; // 0 = far z, 1 = far - near
static float lastRGBAfull[2][4][4];
-static float lastCustomTexScale[8][2];
static u8 s_nTexDimsChanged;
static u8 s_nIndTexScaleChanged;
static u32 lastAlpha;
@@ -43,8 +42,6 @@ static u32 lastZBias;
void PixelShaderManager::Init()
{
- for (int i = 0; i < 8; i++)
- lastCustomTexScale[i][0] = lastCustomTexScale[i][1] = 1.0f;
lastAlpha = 0;
memset(lastTexDims, 0, sizeof(lastTexDims));
lastZBias = 0;
@@ -55,8 +52,8 @@ void PixelShaderManager::Init()
void PixelShaderManager::Dirty()
{
s_nColorsChanged[0] = s_nColorsChanged[1] = 15;
- s_nTexDimsChanged = true;
- s_nIndTexScaleChanged = true;
+ s_nTexDimsChanged = 0xFF;
+ s_nIndTexScaleChanged = 0xFF;
s_nIndTexMtxChanged = 15;
s_bAlphaChanged = s_bZBiasChanged = s_bZTextureTypeChanged = s_bDepthRangeChanged = true;
s_bFogColorChanged = s_bFogParamChanged = true;
@@ -210,9 +207,6 @@ void PixelShaderManager::SetConstants()
}
s_bFogParamChanged = false;
}
-
- for (int i = 0; i < 8; i++)
- lastCustomTexScale[i][0] = lastCustomTexScale[i][1] = 1.0f;
}
void PixelShaderManager::SetPSTextureDims(int texid)
@@ -224,8 +218,8 @@ void PixelShaderManager::SetPSTextureDims(int texid)
TCoordInfo& tc = bpmem.texcoords[texid];
fdims[0] = 1.0f / (float)(lastTexDims[texid] & 0xffff);
fdims[1] = 1.0f / (float)((lastTexDims[texid] >> 16) & 0xfff);
- fdims[2] = (float)(tc.s.scale_minus_1 + 1) * lastCustomTexScale[texid][0];
- fdims[3] = (float)(tc.t.scale_minus_1 + 1) * lastCustomTexScale[texid][1];
+ fdims[2] = (float)(tc.s.scale_minus_1 + 1);
+ fdims[3] = (float)(tc.t.scale_minus_1 + 1);
PRIM_LOG("texdims%d: %f %f %f %f\n", texid, fdims[0], fdims[1], fdims[2], fdims[3]);
SetPSConstant4fv(C_TEXDIMS + texid, fdims);
@@ -276,16 +270,6 @@ void PixelShaderManager::SetTexDims(int texmapid, u32 width, u32 height, u32 wra
}
}
-void PixelShaderManager::SetCustomTexScale(int texmapid, float x, float y)
-{
- if (lastCustomTexScale[texmapid][0] != x || lastCustomTexScale[texmapid][1] != y)
- {
- s_nTexDimsChanged |= 1 << texmapid;
- lastCustomTexScale[texmapid][0] = x;
- lastCustomTexScale[texmapid][1] = y;
- }
-}
-
void PixelShaderManager::SetZTextureBias(u32 bias)
{
if (lastZBias != bias)
diff --git a/Source/Core/VideoCommon/Src/PixelShaderManager.h b/Source/Core/VideoCommon/Src/PixelShaderManager.h
index 61a3c50662..a838e75c91 100644
--- a/Source/Core/VideoCommon/Src/PixelShaderManager.h
+++ b/Source/Core/VideoCommon/Src/PixelShaderManager.h
@@ -41,7 +41,6 @@ public:
static void SetAlpha(const AlphaFunc& alpha);
static void SetDestAlpha(const ConstantAlpha& alpha);
static void SetTexDims(int texmapid, u32 width, u32 height, u32 wraps, u32 wrapt);
- static void SetCustomTexScale(int texmapid, float x, float y);
static void SetZTextureBias(u32 bias);
static void SetViewport(float* viewport,int VIndex = -1);
static void SetIndMatrixChanged(int matrixidx);