Move PixelShaderManager, ImageWrite to VideoCommon.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1686 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
afc87eb5ae
commit
d585d26393
|
@ -15,8 +15,6 @@
|
|||
// Official SVN repository and contact information can be found at
|
||||
// http://code.google.com/p/dolphin-emu/
|
||||
|
||||
#include "Globals.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <list>
|
||||
#include <vector>
|
|
@ -18,6 +18,8 @@
|
|||
#ifndef _IMAGEWRITE_H
|
||||
#define _IMAGEWRITE_H
|
||||
|
||||
#include "Common.h"
|
||||
|
||||
bool SaveTGA(const char* filename, int width, int height, void* pdata);
|
||||
bool SaveTexture(const char* filename, u32 textarget, u32 tex, int width, int height);
|
||||
bool SaveData(const char* filename, const char* pdata);
|
|
@ -21,7 +21,6 @@
|
|||
#include <cmath>
|
||||
|
||||
#include "Statistics.h"
|
||||
#include "Config.h"
|
||||
|
||||
#include "PixelShaderManager.h"
|
||||
|
|
@ -11,7 +11,9 @@ files = [
|
|||
"XFMemory.cpp",
|
||||
"XFBConvert.cpp",
|
||||
"PixelShader.cpp",
|
||||
"PixelShaderManager.cpp",
|
||||
"VertexShader.cpp",
|
||||
"ImageWrite.cpp",
|
||||
"Statistics.cpp",
|
||||
"Fifo.cpp",
|
||||
"VideoState.cpp",
|
||||
|
|
|
@ -471,6 +471,14 @@
|
|||
RelativePath=".\Src\Fifo.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\ImageWrite.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\ImageWrite.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\IndexGenerator.cpp"
|
||||
>
|
||||
|
@ -499,6 +507,14 @@
|
|||
RelativePath=".\Src\OpcodeDecoding.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\PixelShaderManager.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\PixelShaderManager.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\Profiler.cpp"
|
||||
>
|
||||
|
|
|
@ -812,14 +812,6 @@
|
|||
RelativePath=".\Src\PixelShaderCache.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\PixelShaderManager.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\PixelShaderManager.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\rasterfont.cpp"
|
||||
>
|
||||
|
@ -968,14 +960,6 @@
|
|||
RelativePath=".\Src\Logging\Console.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\ImageWrite.cpp"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\ImageWrite.h"
|
||||
>
|
||||
</File>
|
||||
<File
|
||||
RelativePath=".\Src\Logging\Logging.cpp"
|
||||
>
|
||||
|
|
Loading…
Reference in New Issue