summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
diff options
context:
space:
mode:
authorcomex <comexk@gmail.com>2015-09-05 22:20:47 -0400
committercomex <comexk@gmail.com>2015-09-05 22:20:47 -0400
commit96e42dff52158c483f13e631d8f2df7f7b7ea4e6 (patch)
tree54b0051cdb2ecf329b81c7cb0013c18e43051e49 /Source/Core/VideoCommon
parent6af8e00b66b6fb00e030641435540248793a0bf3 (diff)
parent633be0387d7aa7f4bf9a57179e46bcb746c6a92f (diff)
Merge pull request #2977 from lioncash/unused
General: Remove unimplemented function prototypes
Diffstat (limited to 'Source/Core/VideoCommon')
-rw-r--r--Source/Core/VideoCommon/PixelShaderManager.h1
-rw-r--r--Source/Core/VideoCommon/VertexLoader_Position.h7
-rw-r--r--Source/Core/VideoCommon/VertexLoader_TextCoord.h4
-rw-r--r--Source/Core/VideoCommon/VideoBackendBase.h1
4 files changed, 2 insertions, 11 deletions
diff --git a/Source/Core/VideoCommon/PixelShaderManager.h b/Source/Core/VideoCommon/PixelShaderManager.h
index 149b9cc55b..b3a7e8419b 100644
--- a/Source/Core/VideoCommon/PixelShaderManager.h
+++ b/Source/Core/VideoCommon/PixelShaderManager.h
@@ -39,7 +39,6 @@ public:
static void SetEfbScaleChanged();
static void SetZSlope(float dfdx, float dfdy, float f0);
static void SetIndMatrixChanged(int matrixidx);
- static void SetTevKSelChanged(int id);
static void SetZTextureTypeChanged();
static void SetIndTexScaleChanged(bool high);
static void SetTexCoordChanged(u8 texmapid);
diff --git a/Source/Core/VideoCommon/VertexLoader_Position.h b/Source/Core/VideoCommon/VertexLoader_Position.h
index 65a97e5bde..306a1a8c4a 100644
--- a/Source/Core/VideoCommon/VertexLoader_Position.h
+++ b/Source/Core/VideoCommon/VertexLoader_Position.h
@@ -6,12 +6,9 @@
#include "VideoCommon/NativeVertexFormat.h"
-class VertexLoader_Position {
+class VertexLoader_Position
+{
public:
-
- // Init
- static void Init();
-
// GetSize
static unsigned int GetSize(u64 _type, unsigned int _format, unsigned int _elements);
diff --git a/Source/Core/VideoCommon/VertexLoader_TextCoord.h b/Source/Core/VideoCommon/VertexLoader_TextCoord.h
index 0e3c7bac62..4d8d352058 100644
--- a/Source/Core/VideoCommon/VertexLoader_TextCoord.h
+++ b/Source/Core/VideoCommon/VertexLoader_TextCoord.h
@@ -9,10 +9,6 @@
class VertexLoader_TextCoord
{
public:
-
- // Init
- static void Init();
-
// GetSize
static unsigned int GetSize(u64 _type, unsigned int _format, unsigned int _elements);
diff --git a/Source/Core/VideoCommon/VideoBackendBase.h b/Source/Core/VideoCommon/VideoBackendBase.h
index 2b3ee0f6b9..f6cd1d12bf 100644
--- a/Source/Core/VideoCommon/VideoBackendBase.h
+++ b/Source/Core/VideoCommon/VideoBackendBase.h
@@ -160,5 +160,4 @@ public:
protected:
void InitializeShared();
- void InvalidState();
};