mirror of
https://github.com/doitsujin/dxvk.git
synced 2025-03-06 20:58:37 +01:00
24 lines
No EOL
404 B
C++
24 lines
No EOL
404 B
C++
#pragma once
|
|
|
|
#include <array>
|
|
|
|
#include "d3d11_interfaces.h"
|
|
#include "d3d11_view.h"
|
|
|
|
namespace dxvk {
|
|
|
|
struct D3D11ContextStateOM {
|
|
Rc<DxvkFramebuffer> framebuffer;
|
|
};
|
|
|
|
/**
|
|
* \brief Context state
|
|
*/
|
|
struct D3D11ContextState {
|
|
std::array<
|
|
Com<D3D11RenderTargetView>,
|
|
D3D11_SIMULTANEOUS_RENDER_TARGET_COUNT> omRenderTargetViews;
|
|
D3D11ContextStateOM om;
|
|
};
|
|
|
|
} |