mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-01 01:20:40 +00:00
normalize common filenames in VideoBackends/Null
This commit is contained in:
parent
ff4f67492b
commit
ef70fe05bf
@ -1,13 +1,13 @@
|
|||||||
add_library(videonull
|
add_library(videonull
|
||||||
NullBackend.cpp
|
NullBackend.cpp
|
||||||
|
NullRender.cpp
|
||||||
|
NullRender.h
|
||||||
NullTexture.cpp
|
NullTexture.cpp
|
||||||
NullTexture.h
|
NullTexture.h
|
||||||
|
NullVertexManager.cpp
|
||||||
|
NullVertexManager.h
|
||||||
PerfQuery.h
|
PerfQuery.h
|
||||||
Render.cpp
|
|
||||||
Render.h
|
|
||||||
TextureCache.h
|
TextureCache.h
|
||||||
VertexManager.cpp
|
|
||||||
VertexManager.h
|
|
||||||
VideoBackend.h
|
VideoBackend.h
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -17,16 +17,16 @@
|
|||||||
<PropertyGroup Label="UserMacros" />
|
<PropertyGroup Label="UserMacros" />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<ClCompile Include="NullBackend.cpp" />
|
<ClCompile Include="NullBackend.cpp" />
|
||||||
|
<ClCompile Include="NullRender.cpp" />
|
||||||
<ClCompile Include="NullTexture.cpp" />
|
<ClCompile Include="NullTexture.cpp" />
|
||||||
<ClCompile Include="Render.cpp" />
|
<ClCompile Include="NullVertexManager.cpp" />
|
||||||
<ClCompile Include="VertexManager.cpp" />
|
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<ClInclude Include="NullRender.h" />
|
||||||
<ClInclude Include="NullTexture.h" />
|
<ClInclude Include="NullTexture.h" />
|
||||||
|
<ClInclude Include="NullVertexManager.h" />
|
||||||
<ClInclude Include="PerfQuery.h" />
|
<ClInclude Include="PerfQuery.h" />
|
||||||
<ClInclude Include="Render.h" />
|
|
||||||
<ClInclude Include="TextureCache.h" />
|
<ClInclude Include="TextureCache.h" />
|
||||||
<ClInclude Include="VertexManager.h" />
|
|
||||||
<ClInclude Include="VideoBackend.h" />
|
<ClInclude Include="VideoBackend.h" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
@ -7,10 +7,10 @@
|
|||||||
// This backend tries not to do anything in the backend,
|
// This backend tries not to do anything in the backend,
|
||||||
// but everything in VideoCommon.
|
// but everything in VideoCommon.
|
||||||
|
|
||||||
|
#include "VideoBackends/Null/NullRender.h"
|
||||||
|
#include "VideoBackends/Null/NullVertexManager.h"
|
||||||
#include "VideoBackends/Null/PerfQuery.h"
|
#include "VideoBackends/Null/PerfQuery.h"
|
||||||
#include "VideoBackends/Null/Render.h"
|
|
||||||
#include "VideoBackends/Null/TextureCache.h"
|
#include "VideoBackends/Null/TextureCache.h"
|
||||||
#include "VideoBackends/Null/VertexManager.h"
|
|
||||||
#include "VideoBackends/Null/VideoBackend.h"
|
#include "VideoBackends/Null/VideoBackend.h"
|
||||||
|
|
||||||
#include "Common/Common.h"
|
#include "Common/Common.h"
|
||||||
|
@ -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 "VideoBackends/Null/Render.h"
|
#include "VideoBackends/Null/NullRender.h"
|
||||||
|
|
||||||
#include "VideoBackends/Null/NullTexture.h"
|
#include "VideoBackends/Null/NullTexture.h"
|
||||||
|
|
@ -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 "VideoBackends/Null/VertexManager.h"
|
#include "VideoBackends/Null/NullVertexManager.h"
|
||||||
|
|
||||||
namespace Null
|
namespace Null
|
||||||
{
|
{
|
Loading…
x
Reference in New Issue
Block a user