VideoCommon: small cleanups. No functional change.
This commit is contained in:
parent
7416b9cdb4
commit
9d87818853
|
@ -58,7 +58,6 @@ struct SCPFifoStruct
|
||||||
volatile u32 bFF_HiWatermark;
|
volatile u32 bFF_HiWatermark;
|
||||||
|
|
||||||
// for GP watchdog hack
|
// for GP watchdog hack
|
||||||
volatile u32 Fake_GPWDToken; // cicular incrementer
|
|
||||||
volatile u32 isGpuReadingData;
|
volatile u32 isGpuReadingData;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -80,7 +79,7 @@ public:
|
||||||
virtual std::string GetName() const = 0;
|
virtual std::string GetName() const = 0;
|
||||||
virtual std::string GetDisplayName() const { return GetName(); }
|
virtual std::string GetDisplayName() const { return GetName(); }
|
||||||
|
|
||||||
virtual void ShowConfig(void*) {}
|
virtual void ShowConfig(void*) = 0;
|
||||||
|
|
||||||
virtual void Video_Prepare() = 0;
|
virtual void Video_Prepare() = 0;
|
||||||
virtual void Video_EnterLoop() = 0;
|
virtual void Video_EnterLoop() = 0;
|
||||||
|
|
|
@ -29,11 +29,6 @@ const u32 MAX_XFB_WIDTH = EFB_WIDTH;
|
||||||
// that are next to each other in memory (TODO: handle that situation).
|
// that are next to each other in memory (TODO: handle that situation).
|
||||||
const u32 MAX_XFB_HEIGHT = 574;
|
const u32 MAX_XFB_HEIGHT = 574;
|
||||||
|
|
||||||
// Logging
|
|
||||||
// ----------
|
|
||||||
void HandleGLError();
|
|
||||||
|
|
||||||
|
|
||||||
// This structure should only be used to represent a rectangle in EFB
|
// This structure should only be used to represent a rectangle in EFB
|
||||||
// coordinates, where the origin is at the upper left and the frame dimensions
|
// coordinates, where the origin is at the upper left and the frame dimensions
|
||||||
// are 640 x 528.
|
// are 640 x 528.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Filter Include="Base">
|
<Filter Include="Base">
|
||||||
|
@ -80,9 +80,6 @@
|
||||||
<ClCompile Include="TextureConversionShader.cpp">
|
<ClCompile Include="TextureConversionShader.cpp">
|
||||||
<Filter>Shader Generators</Filter>
|
<Filter>Shader Generators</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="TextureDecoder_x64.cpp">
|
|
||||||
<Filter>Shader Generators</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="VertexShaderGen.cpp">
|
<ClCompile Include="VertexShaderGen.cpp">
|
||||||
<Filter>Shader Generators</Filter>
|
<Filter>Shader Generators</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
@ -135,6 +132,9 @@
|
||||||
<Filter>Vertex Loading</Filter>
|
<Filter>Vertex Loading</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="stdafx.cpp" />
|
<ClCompile Include="stdafx.cpp" />
|
||||||
|
<ClCompile Include="TextureDecoder_x64.cpp">
|
||||||
|
<Filter>Decoding</Filter>
|
||||||
|
</ClCompile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClInclude Include="CommandProcessor.h" />
|
<ClInclude Include="CommandProcessor.h" />
|
||||||
|
@ -266,4 +266,4 @@
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Text Include="CMakeLists.txt" />
|
<Text Include="CMakeLists.txt" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
|
@ -44,8 +44,6 @@ enum EFBScale
|
||||||
SCALE_4X,
|
SCALE_4X,
|
||||||
};
|
};
|
||||||
|
|
||||||
class IniFile;
|
|
||||||
|
|
||||||
// NEVER inherit from this class.
|
// NEVER inherit from this class.
|
||||||
struct VideoConfig final
|
struct VideoConfig final
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue