2010-06-13 19:50:06 +00:00
|
|
|
// Copyright (C) 2003 Dolphin Project.
|
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, version 2.0.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License 2.0 for more details.
|
|
|
|
|
|
|
|
// A copy of the GPL 2.0 should have been included with the program.
|
|
|
|
// If not, see http://www.gnu.org/licenses/
|
|
|
|
|
|
|
|
// Official SVN repository and contact information can be found at
|
|
|
|
// http://code.google.com/p/dolphin-emu/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2011-01-29 20:16:51 +00:00
|
|
|
#include <d3d11.h>
|
|
|
|
|
|
|
|
namespace DX11
|
|
|
|
{
|
2010-06-13 19:50:06 +00:00
|
|
|
|
|
|
|
namespace D3D
|
|
|
|
{
|
2010-06-19 18:14:05 +00:00
|
|
|
void ReplaceRGBATexture2D(ID3D11Texture2D* pTexture, const u8* buffer, unsigned int width, unsigned int height, unsigned int pitch, unsigned int level, D3D11_USAGE usage);
|
2010-06-13 19:50:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class D3DTexture2D
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// there are two ways to create a D3DTexture2D object:
|
|
|
|
// either create an ID3D11Texture2D object, pass it to the constructor and specify what views to create
|
|
|
|
// or let the texture automatically be created by D3DTexture2D::Create
|
|
|
|
|
2011-06-11 19:37:21 +00:00
|
|
|
D3DTexture2D(ID3D11Texture2D* texptr, D3D11_BIND_FLAG bind, DXGI_FORMAT srv_format = DXGI_FORMAT_UNKNOWN, DXGI_FORMAT dsv_format = DXGI_FORMAT_UNKNOWN, DXGI_FORMAT rtv_format = DXGI_FORMAT_UNKNOWN, bool multisampled = false);
|
|
|
|
static D3DTexture2D* Create(unsigned int width, unsigned int height, D3D11_BIND_FLAG bind, D3D11_USAGE usage, DXGI_FORMAT, unsigned int levels = 1);
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2011-06-11 19:37:21 +00:00
|
|
|
// reference counting, use AddRef() when creating a new reference and Release() it when you don't need it anymore
|
|
|
|
void AddRef();
|
|
|
|
UINT Release();
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2011-06-11 19:37:21 +00:00
|
|
|
ID3D11Texture2D* &GetTex();
|
|
|
|
ID3D11ShaderResourceView* &GetSRV();
|
|
|
|
ID3D11RenderTargetView* &GetRTV();
|
|
|
|
ID3D11DepthStencilView* &GetDSV();
|
2010-06-13 19:50:06 +00:00
|
|
|
|
2011-06-11 19:37:21 +00:00
|
|
|
private:
|
2010-06-13 19:50:06 +00:00
|
|
|
~D3DTexture2D();
|
|
|
|
|
2011-06-11 19:37:21 +00:00
|
|
|
ID3D11Texture2D* tex;
|
2010-06-13 19:50:06 +00:00
|
|
|
ID3D11ShaderResourceView* srv;
|
|
|
|
ID3D11RenderTargetView* rtv;
|
|
|
|
ID3D11DepthStencilView* dsv;
|
|
|
|
D3D11_BIND_FLAG bindflags;
|
|
|
|
UINT ref;
|
|
|
|
};
|
2011-01-29 20:16:51 +00:00
|
|
|
|
|
|
|
} // namespace DX11
|