diff options
| author | omegadox <omegadox@gmail.com> | 2009-03-02 19:38:38 +0000 |
|---|---|---|
| committer | omegadox <omegadox@gmail.com> | 2009-03-02 19:38:38 +0000 |
| commit | 56becf28dbc954790683ab44d619b23348055f8a (patch) | |
| tree | 10347a1926a48d7b5530afc7dfc92900a78a60e9 /Source/Core | |
| parent | 0255f775da1b704e763c1bea862ba85c025246c4 (diff) | |
Revert 2521.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@2524 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Core')
| -rw-r--r-- | Source/Core/VideoCommon/Src/VertexShaderManager.cpp | 57 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/Src/VertexShaderManager.h | 2 | ||||
| -rw-r--r-- | Source/Core/VideoCommon/Src/XFStructs.cpp | 2 |
3 files changed, 42 insertions, 19 deletions
diff --git a/Source/Core/VideoCommon/Src/VertexShaderManager.cpp b/Source/Core/VideoCommon/Src/VertexShaderManager.cpp index b3e03ee338..361e355dc2 100644 --- a/Source/Core/VideoCommon/Src/VertexShaderManager.cpp +++ b/Source/Core/VideoCommon/Src/VertexShaderManager.cpp @@ -69,7 +69,7 @@ void VertexShaderManager::Shutdown() // ======================================================================================= // Syncs the shader constant buffers with xfmem // ---------------- -void VertexShaderManager::SetConstants() +void VertexShaderManager::SetConstants(bool proj_hax_1, bool proj_hax_2) { //nTransformMatricesChanged[0] = 0; nTransformMatricesChanged[1] = 256; //nNormalMatricesChanged[0] = 0; nNormalMatricesChanged[1] = 96; @@ -203,17 +203,30 @@ void VertexShaderManager::SetConstants() g_fProjectionMatrix[0] = xfregs.rawProjection[0]; g_fProjectionMatrix[1] = 0.0f; g_fProjectionMatrix[2] = xfregs.rawProjection[1]; - g_fProjectionMatrix[3] = 0.0f; + g_fProjectionMatrix[3] = 0; g_fProjectionMatrix[4] = 0.0f; g_fProjectionMatrix[5] = xfregs.rawProjection[2]; g_fProjectionMatrix[6] = xfregs.rawProjection[3]; - g_fProjectionMatrix[7] = 0.0f; + g_fProjectionMatrix[7] = 0; g_fProjectionMatrix[8] = 0.0f; g_fProjectionMatrix[9] = 0.0f; g_fProjectionMatrix[10] = xfregs.rawProjection[4]; - g_fProjectionMatrix[11] = xfregs.rawProjection[5]; + + //---------Projection[11]--------- + // No hacks + if ((!proj_hax_1 && !proj_hax_2) || (proj_hax_1 && proj_hax_2)) + g_fProjectionMatrix[11] = -(0.0f - xfregs.rawProjection[5]); + + // Before R945 Hack + if (proj_hax_1 && !proj_hax_2) + g_fProjectionMatrix[11] = -(1.0f - xfregs.rawProjection[5]); + + // R844 Hack + if (!proj_hax_1 && proj_hax_2) + g_fProjectionMatrix[11] = xfregs.rawProjection[5]; + //-------------------------------- g_fProjectionMatrix[12] = 0.0f; g_fProjectionMatrix[13] = 0.0f; @@ -253,10 +266,24 @@ void VertexShaderManager::SetConstants() g_fProjectionMatrix[8] = 0.0f; g_fProjectionMatrix[9] = 0.0f; g_fProjectionMatrix[10] = xfregs.rawProjection[4]; - g_fProjectionMatrix[11] = xfregs.rawProjection[5] + 0.1f; + + //---------Projection[11]--------- + // No hacks + if ((!proj_hax_1 && !proj_hax_2) || (proj_hax_1 && proj_hax_2)) + g_fProjectionMatrix[11] = -(-0.5f - xfregs.rawProjection[5]); - g_fProjectionMatrix[12] = 0.0f; - g_fProjectionMatrix[13] = 0.0f; + // Before R945 Hack + if (proj_hax_1 && !proj_hax_2) + g_fProjectionMatrix[11] = -(0.0f - xfregs.rawProjection[5]); + + // R844 Hack + if (!proj_hax_1 && proj_hax_2) + g_fProjectionMatrix[11] = -xfregs.rawProjection[5]; + + //-------------------------------- + + g_fProjectionMatrix[12] = 0; + g_fProjectionMatrix[13] = 0; g_fProjectionMatrix[14] = 0.0f; g_fProjectionMatrix[15] = 1.0f; @@ -276,17 +303,15 @@ void VertexShaderManager::SetConstants() SETSTAT_FT(stats.g2proj_13, g_fProjectionMatrix[13]); SETSTAT_FT(stats.g2proj_14, g_fProjectionMatrix[14]); SETSTAT_FT(stats.g2proj_15, g_fProjectionMatrix[15]); - - SETSTAT_FT(stats.proj_0, xfregs.rawProjection[0]); - SETSTAT_FT(stats.proj_1, xfregs.rawProjection[1]); - SETSTAT_FT(stats.proj_2, xfregs.rawProjection[2]); - SETSTAT_FT(stats.proj_3, xfregs.rawProjection[3]); - SETSTAT_FT(stats.proj_4, xfregs.rawProjection[4]); - SETSTAT_FT(stats.proj_5, xfregs.rawProjection[5]); - SETSTAT_FT(stats.proj_6, xfregs.rawProjection[6]); } - + SETSTAT_FT(stats.proj_0, xfregs.rawProjection[0]); + SETSTAT_FT(stats.proj_1, xfregs.rawProjection[1]); + SETSTAT_FT(stats.proj_2, xfregs.rawProjection[2]); + SETSTAT_FT(stats.proj_3, xfregs.rawProjection[3]); + SETSTAT_FT(stats.proj_4, xfregs.rawProjection[4]); + SETSTAT_FT(stats.proj_5, xfregs.rawProjection[5]); + SETSTAT_FT(stats.proj_6, xfregs.rawProjection[6]); PRIM_LOG("Projection: %f %f %f %f %f %f\n", xfregs.rawProjection[0], xfregs.rawProjection[1], xfregs.rawProjection[2], xfregs.rawProjection[3], xfregs.rawProjection[4], xfregs.rawProjection[5]); SetVSConstant4fv(C_PROJECTION, &g_fProjectionMatrix[0]); diff --git a/Source/Core/VideoCommon/Src/VertexShaderManager.h b/Source/Core/VideoCommon/Src/VertexShaderManager.h index 4975b87f0f..06f8a1a168 100644 --- a/Source/Core/VideoCommon/Src/VertexShaderManager.h +++ b/Source/Core/VideoCommon/Src/VertexShaderManager.h @@ -28,7 +28,7 @@ public: static void Shutdown(); // constant management - static void SetConstants(); + static void SetConstants(bool proj_hax_1, bool proj_hax_2); static void SetViewport(float* _Viewport); static void SetViewportChanged(); diff --git a/Source/Core/VideoCommon/Src/XFStructs.cpp b/Source/Core/VideoCommon/Src/XFStructs.cpp index 9f1bffdf74..7a0d07959e 100644 --- a/Source/Core/VideoCommon/Src/XFStructs.cpp +++ b/Source/Core/VideoCommon/Src/XFStructs.cpp @@ -21,7 +21,6 @@ #include "CPMemory.h"
#include "NativeVertexWriter.h"
#include "VertexShaderManager.h"
-#include "PixelShaderManager.h"
// LoadXFReg 0x10
void LoadXFReg(u32 transferSize, u32 baseAddress, u32 *pData)
@@ -155,7 +154,6 @@ void LoadXFReg(u32 transferSize, u32 baseAddress, u32 *pData) case 0x101a:
VertexManager::Flush();
VertexShaderManager::SetViewport((float*)&pData[i]);
- PixelShaderManager::SetViewport((float*)&pData[i]);
i += 6;
break;
|
