summaryrefslogtreecommitdiff
path: root/Source/Plugins/Plugin_VideoSoftware
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2013-02-16 17:50:40 -0600
committerJordan Woyak <jordan.woyak@gmail.com>2013-02-16 19:30:24 -0600
commit53aec6c476b0ec9db4d301eaafedbb26eb3697f4 (patch)
treedc0f60174eb8222ae6fa10321ad85fcbf9ce3d42 /Source/Plugins/Plugin_VideoSoftware
parent54947b1e2246804ddf5ec0378f8111905a6d04bd (diff)
Fix OGL perf queries and make them not slow!
Diffstat (limited to 'Source/Plugins/Plugin_VideoSoftware')
-rw-r--r--Source/Plugins/Plugin_VideoSoftware/Src/SWmain.cpp6
-rw-r--r--Source/Plugins/Plugin_VideoSoftware/Src/VideoBackend.h2
2 files changed, 8 insertions, 0 deletions
diff --git a/Source/Plugins/Plugin_VideoSoftware/Src/SWmain.cpp b/Source/Plugins/Plugin_VideoSoftware/Src/SWmain.cpp
index 3c6fdcca38..100ff55bf4 100644
--- a/Source/Plugins/Plugin_VideoSoftware/Src/SWmain.cpp
+++ b/Source/Plugins/Plugin_VideoSoftware/Src/SWmain.cpp
@@ -176,6 +176,12 @@ u32 VideoSoftware::Video_AccessEFB(EFBAccessType type, u32 x, u32 y, u32 InputDa
return value;
}
+u32 VideoSoftware::Video_GetQueryResult(PerfQueryType type)
+{
+ // TODO:
+ return 0;
+}
+
bool VideoSoftware::Video_Screenshot(const char *_szFilename)
{
return false;
diff --git a/Source/Plugins/Plugin_VideoSoftware/Src/VideoBackend.h b/Source/Plugins/Plugin_VideoSoftware/Src/VideoBackend.h
index c0309c95c1..2ba282788b 100644
--- a/Source/Plugins/Plugin_VideoSoftware/Src/VideoBackend.h
+++ b/Source/Plugins/Plugin_VideoSoftware/Src/VideoBackend.h
@@ -26,7 +26,9 @@ class VideoSoftware : public VideoBackend
void Video_ExitLoop();
void Video_BeginField(u32, FieldType, u32, u32);
void Video_EndField();
+
u32 Video_AccessEFB(EFBAccessType, u32, u32, u32);
+ u32 Video_GetQueryResult(PerfQueryType type);
void Video_AddMessage(const char* pstr, unsigned int milliseconds);
void Video_ClearMessages();