mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Use less brain damaged names for DLCache and TextureDecoder.
This commit is contained in:
@ -15,7 +15,7 @@ set(SRCS Src/BPFunctions.cpp
|
|||||||
Src/OnScreenDisplay.cpp
|
Src/OnScreenDisplay.cpp
|
||||||
Src/OpcodeDecoding.cpp
|
Src/OpcodeDecoding.cpp
|
||||||
Src/OpenCL.cpp
|
Src/OpenCL.cpp
|
||||||
Src/OpenCL/OCLTextureDecoder.cpp
|
Src/OpenCL/TextureDecoder_OpenCL.cpp
|
||||||
Src/PerfQueryBase.cpp
|
Src/PerfQueryBase.cpp
|
||||||
Src/PixelEngine.cpp
|
Src/PixelEngine.cpp
|
||||||
Src/PixelShaderGen.cpp
|
Src/PixelShaderGen.cpp
|
||||||
@ -42,11 +42,11 @@ set(SRCS Src/BPFunctions.cpp
|
|||||||
set(LIBS core png)
|
set(LIBS core png)
|
||||||
|
|
||||||
if(NOT _M_GENERIC)
|
if(NOT _M_GENERIC)
|
||||||
set(SRCS ${SRCS} Src/x64TextureDecoder.cpp
|
set(SRCS ${SRCS} Src/TextureDecoder_x64.cpp
|
||||||
Src/x64DLCache.cpp)
|
Src/DLCache_x64.cpp)
|
||||||
else()
|
else()
|
||||||
set(SRCS ${SRCS} Src/GenericTextureDecoder.cpp
|
set(SRCS ${SRCS} Src/TextureDecoder_Generic.cpp
|
||||||
Src/GenericDLCache.cpp)
|
Src/DLCache_Generic.cpp)
|
||||||
endif()
|
endif()
|
||||||
if(NOT ${CL} STREQUAL CL-NOTFOUND)
|
if(NOT ${CL} STREQUAL CL-NOTFOUND)
|
||||||
list(APPEND LIBS ${CL})
|
list(APPEND LIBS ${CL})
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
#include "DataReader.h"
|
#include "DataReader.h"
|
||||||
|
|
||||||
#include "OpenCL.h"
|
#include "OpenCL.h"
|
||||||
#include "OpenCL/OCLTextureDecoder.h"
|
#include "OpenCL/TextureDecoder_OpenCL.h"
|
||||||
#include "VideoConfig.h"
|
#include "VideoConfig.h"
|
||||||
|
|
||||||
u8* g_pVideoData = 0;
|
u8* g_pVideoData = 0;
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
// Licensed under GPLv2
|
// Licensed under GPLv2
|
||||||
// Refer to the license.txt file included.
|
// Refer to the license.txt file included.
|
||||||
|
|
||||||
#include "OCLTextureDecoder.h"
|
#include "TextureDecoder_OpenCL.h"
|
||||||
|
|
||||||
#include "../OpenCL.h"
|
#include "../OpenCL.h"
|
||||||
#include "CommonPaths.h"
|
#include "CommonPaths.h"
|
@ -21,7 +21,7 @@
|
|||||||
#include "CPUDetect.h"
|
#include "CPUDetect.h"
|
||||||
#include "TextureDecoder.h"
|
#include "TextureDecoder.h"
|
||||||
#include "OpenCL.h"
|
#include "OpenCL.h"
|
||||||
#include "OpenCL/OCLTextureDecoder.h"
|
#include "OpenCL/TextureDecoder_OpenCL.h"
|
||||||
#include "VideoConfig.h"
|
#include "VideoConfig.h"
|
||||||
|
|
||||||
#include "LookUpTables.h"
|
#include "LookUpTables.h"
|
@ -8,7 +8,7 @@
|
|||||||
#include "CPUDetect.h"
|
#include "CPUDetect.h"
|
||||||
#include "TextureDecoder.h"
|
#include "TextureDecoder.h"
|
||||||
#include "OpenCL.h"
|
#include "OpenCL.h"
|
||||||
#include "OpenCL/OCLTextureDecoder.h"
|
#include "OpenCL/TextureDecoder_OpenCL.h"
|
||||||
#include "VideoConfig.h"
|
#include "VideoConfig.h"
|
||||||
|
|
||||||
#include "LookUpTables.h"
|
#include "LookUpTables.h"
|
@ -50,6 +50,7 @@
|
|||||||
<ClCompile Include="Src\CommandProcessor.cpp" />
|
<ClCompile Include="Src\CommandProcessor.cpp" />
|
||||||
<ClCompile Include="Src\CPMemory.cpp" />
|
<ClCompile Include="Src\CPMemory.cpp" />
|
||||||
<ClCompile Include="Src\Debugger.cpp" />
|
<ClCompile Include="Src\Debugger.cpp" />
|
||||||
|
<ClCompile Include="Src\DLCache_x64.cpp" />
|
||||||
<ClCompile Include="Src\DriverDetails.cpp" />
|
<ClCompile Include="Src\DriverDetails.cpp" />
|
||||||
<ClCompile Include="Src\EmuWindow.cpp" />
|
<ClCompile Include="Src\EmuWindow.cpp" />
|
||||||
<ClCompile Include="Src\Fifo.cpp" />
|
<ClCompile Include="Src\Fifo.cpp" />
|
||||||
@ -63,7 +64,7 @@
|
|||||||
<ClCompile Include="Src\OnScreenDisplay.cpp" />
|
<ClCompile Include="Src\OnScreenDisplay.cpp" />
|
||||||
<ClCompile Include="Src\OpcodeDecoding.cpp" />
|
<ClCompile Include="Src\OpcodeDecoding.cpp" />
|
||||||
<ClCompile Include="Src\OpenCL.cpp" />
|
<ClCompile Include="Src\OpenCL.cpp" />
|
||||||
<ClCompile Include="Src\OpenCL\OCLTextureDecoder.cpp" />
|
<ClCompile Include="Src\OpenCL\TextureDecoder_OpenCL.cpp" />
|
||||||
<ClCompile Include="Src\PerfQueryBase.cpp" />
|
<ClCompile Include="Src\PerfQueryBase.cpp" />
|
||||||
<ClCompile Include="Src\PixelEngine.cpp" />
|
<ClCompile Include="Src\PixelEngine.cpp" />
|
||||||
<ClCompile Include="Src\PixelShaderGen.cpp" />
|
<ClCompile Include="Src\PixelShaderGen.cpp" />
|
||||||
@ -75,6 +76,7 @@
|
|||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="Src\TextureCacheBase.cpp" />
|
<ClCompile Include="Src\TextureCacheBase.cpp" />
|
||||||
<ClCompile Include="Src\TextureConversionShader.cpp" />
|
<ClCompile Include="Src\TextureConversionShader.cpp" />
|
||||||
|
<ClCompile Include="Src\TextureDecoder_x64.cpp" />
|
||||||
<ClCompile Include="Src\VertexLoader.cpp" />
|
<ClCompile Include="Src\VertexLoader.cpp" />
|
||||||
<ClCompile Include="Src\VertexLoaderManager.cpp" />
|
<ClCompile Include="Src\VertexLoaderManager.cpp" />
|
||||||
<ClCompile Include="Src\VertexLoader_Color.cpp" />
|
<ClCompile Include="Src\VertexLoader_Color.cpp" />
|
||||||
@ -87,8 +89,6 @@
|
|||||||
<ClCompile Include="Src\VideoBackendBase.cpp" />
|
<ClCompile Include="Src\VideoBackendBase.cpp" />
|
||||||
<ClCompile Include="Src\VideoConfig.cpp" />
|
<ClCompile Include="Src\VideoConfig.cpp" />
|
||||||
<ClCompile Include="Src\VideoState.cpp" />
|
<ClCompile Include="Src\VideoState.cpp" />
|
||||||
<ClCompile Include="Src\x64DLCache.cpp" />
|
|
||||||
<ClCompile Include="Src\x64TextureDecoder.cpp" />
|
|
||||||
<ClCompile Include="Src\XFMemory.cpp" />
|
<ClCompile Include="Src\XFMemory.cpp" />
|
||||||
<ClCompile Include="Src\XFStructs.cpp" />
|
<ClCompile Include="Src\XFStructs.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
@ -117,7 +117,7 @@
|
|||||||
<ClInclude Include="Src\OnScreenDisplay.h" />
|
<ClInclude Include="Src\OnScreenDisplay.h" />
|
||||||
<ClInclude Include="Src\OpcodeDecoding.h" />
|
<ClInclude Include="Src\OpcodeDecoding.h" />
|
||||||
<ClInclude Include="Src\OpenCL.h" />
|
<ClInclude Include="Src\OpenCL.h" />
|
||||||
<ClInclude Include="Src\OpenCL\OCLTextureDecoder.h" />
|
<ClInclude Include="Src\OpenCL\TextureDecoder_OpenCL.h" />
|
||||||
<ClInclude Include="Src\PerfQueryBase.h" />
|
<ClInclude Include="Src\PerfQueryBase.h" />
|
||||||
<ClInclude Include="Src\PixelEngine.h" />
|
<ClInclude Include="Src\PixelEngine.h" />
|
||||||
<ClInclude Include="Src\PixelShaderGen.h" />
|
<ClInclude Include="Src\PixelShaderGen.h" />
|
||||||
@ -168,4 +168,4 @@
|
|||||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
<ImportGroup Label="ExtensionTargets">
|
<ImportGroup Label="ExtensionTargets">
|
||||||
</ImportGroup>
|
</ImportGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -57,10 +57,10 @@
|
|||||||
<ClCompile Include="Src\VertexManagerBase.cpp">
|
<ClCompile Include="Src\VertexManagerBase.cpp">
|
||||||
<Filter>Base</Filter>
|
<Filter>Base</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="Src\OpenCL\OCLTextureDecoder.cpp">
|
<ClCompile Include="Src\OpenCL.cpp">
|
||||||
<Filter>Decoding\OpenCL</Filter>
|
<Filter>Decoding\OpenCL</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="Src\OpenCL.cpp">
|
<ClCompile Include="Src\OpenCL\TextureDecoder_OpenCL.cpp">
|
||||||
<Filter>Decoding\OpenCL</Filter>
|
<Filter>Decoding\OpenCL</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="Src\Fifo.cpp">
|
<ClCompile Include="Src\Fifo.cpp">
|
||||||
@ -69,9 +69,6 @@
|
|||||||
<ClCompile Include="Src\OpcodeDecoding.cpp">
|
<ClCompile Include="Src\OpcodeDecoding.cpp">
|
||||||
<Filter>Decoding</Filter>
|
<Filter>Decoding</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="Src\x64TextureDecoder.cpp">
|
|
||||||
<Filter>Decoding</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="Src\BPFunctions.cpp">
|
<ClCompile Include="Src\BPFunctions.cpp">
|
||||||
<Filter>Register Sections</Filter>
|
<Filter>Register Sections</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -96,6 +93,9 @@
|
|||||||
<ClCompile Include="Src\TextureConversionShader.cpp">
|
<ClCompile Include="Src\TextureConversionShader.cpp">
|
||||||
<Filter>Shader Generators</Filter>
|
<Filter>Shader Generators</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="Src\TextureDecoder_x64.cpp">
|
||||||
|
<Filter>Decoding</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="Src\VertexShaderGen.cpp">
|
<ClCompile Include="Src\VertexShaderGen.cpp">
|
||||||
<Filter>Shader Generators</Filter>
|
<Filter>Shader Generators</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -129,6 +129,9 @@
|
|||||||
<ClCompile Include="Src\VideoState.cpp">
|
<ClCompile Include="Src\VideoState.cpp">
|
||||||
<Filter>Util</Filter>
|
<Filter>Util</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
|
<ClCompile Include="Src\DLCache_x64.cpp">
|
||||||
|
<Filter>Vertex Loading</Filter>
|
||||||
|
</ClCompile>
|
||||||
<ClCompile Include="Src\VertexLoader.cpp">
|
<ClCompile Include="Src\VertexLoader.cpp">
|
||||||
<Filter>Vertex Loading</Filter>
|
<Filter>Vertex Loading</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
@ -147,9 +150,6 @@
|
|||||||
<ClCompile Include="Src\VertexLoaderManager.cpp">
|
<ClCompile Include="Src\VertexLoaderManager.cpp">
|
||||||
<Filter>Vertex Loading</Filter>
|
<Filter>Vertex Loading</Filter>
|
||||||
</ClCompile>
|
</ClCompile>
|
||||||
<ClCompile Include="Src\x64DLCache.cpp">
|
|
||||||
<Filter>Vertex Loading</Filter>
|
|
||||||
</ClCompile>
|
|
||||||
<ClCompile Include="Src\stdafx.cpp" />
|
<ClCompile Include="Src\stdafx.cpp" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
@ -184,7 +184,7 @@
|
|||||||
<ClInclude Include="Src\VertexManagerBase.h">
|
<ClInclude Include="Src\VertexManagerBase.h">
|
||||||
<Filter>Base</Filter>
|
<Filter>Base</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="Src\OpenCL\OCLTextureDecoder.h">
|
<ClInclude Include="Src\OpenCL\TextureDecoder_OpenCL.h">
|
||||||
<Filter>Decoding\OpenCL</Filter>
|
<Filter>Decoding\OpenCL</Filter>
|
||||||
</ClInclude>
|
</ClInclude>
|
||||||
<ClInclude Include="Src\OpenCL.h">
|
<ClInclude Include="Src\OpenCL.h">
|
||||||
@ -294,4 +294,4 @@
|
|||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Text Include="CMakeLists.txt" />
|
<Text Include="CMakeLists.txt" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
</Project>
|
</Project>
|
||||||
|
Reference in New Issue
Block a user