Revert r7421 and r7422.

Should fix issue 4413.


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7592 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
NeoBrainX
2011-06-11 19:37:21 +00:00
parent e5210de9d5
commit 8244efcc02
42 changed files with 1647 additions and 1420 deletions

View File

@ -20,16 +20,22 @@
#include "VideoCommon.h"
#include "D3DUtil.h"
struct ID3D11Texture2D;
struct ID3D11ShaderResourceView;
struct ID3D11PixelShader;
namespace DX11
{
class Television
{
public:
Television();
~Television();
void Init();
void Shutdown();
// Submit video data to be drawn. This will change the current state of the
// TV. xfbAddr points to YUYV data stored in GameCube/Wii RAM, but the XFB
@ -48,9 +54,10 @@ private:
// Used for real XFB mode
SharedPtr<ID3D11Texture2D> m_yuyvTexture;
ID3D11Texture2D* m_yuyvTexture;
ID3D11ShaderResourceView* m_yuyvTextureSRV;
SharedPtr<ID3D11PixelShader> m_pShader;
ID3D11PixelShader* m_pShader;
};
}