mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-24 12:02:37 +00:00
Put some stuff in the gfx plugins into namespaces, so that the symbols won't collide if someone decides to merge the gfx plugins into dolphin too. still more things left to do though.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6972 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
fb35a83d2c
commit
7f97ce79bb
55 changed files with 531 additions and 329 deletions
|
@ -24,6 +24,8 @@
|
|||
#include "Render.h"
|
||||
#include "VertexShaderCache.h"
|
||||
|
||||
namespace DX11 {
|
||||
|
||||
FramebufferManager::Efb FramebufferManager::m_efb;
|
||||
|
||||
D3DTexture2D* &FramebufferManager::GetEFBColorTexture() { return m_efb.color_tex; }
|
||||
|
@ -204,3 +206,5 @@ void XFBSource::CopyEFB(float Gamma)
|
|||
D3D::context->OMSetRenderTargets(1, &FramebufferManager::GetEFBColorTexture()->GetRTV(),
|
||||
FramebufferManager::GetEFBDepthTexture()->GetDSV());
|
||||
}
|
||||
|
||||
} // namespace DX11
|
Loading…
Add table
Add a link
Reference in a new issue