31 #include "../Display/display_target.h"
64 static ID3D11Texture2D *
texture2d_handle(
const GraphicContextPtr &gc,
const TexturePtr &texture);
69 static ID3D11Texture2D *
texture2d_handle(
const GraphicContextPtr &gc,
const PixelBufferPtr &pixel_buffer);
74 static ID3D11Texture2D *
texture2d_handle(
const GraphicContextPtr &gc,
const RenderBufferPtr &render_buffer);
79 static ID3D11Buffer *
buffer_handle(
const GraphicContextPtr &gc,
const VertexArrayBufferPtr &buffer);
84 static ID3D11Buffer *
buffer_handle(
const GraphicContextPtr &gc,
const ElementArrayBufferPtr &buffer);
89 static ID3D11Buffer *
buffer_handle(
const GraphicContextPtr &gc,
const UniformBufferPtr &buffer);
94 static ID3D11ShaderResourceView *
srv_handle(
const GraphicContextPtr &gc,
const TexturePtr &texture);
99 static ID3D11Device *
device_handle(
const GraphicContextPtr &gc);
Display target for uicoreDisplay.
Definition: d3d_target.h:53
Texture object class.
Definition: texture.h:94
std::shared_ptr< Texture > TexturePtr
Definition: d3d_target.h:37
Element Array Buffer.
Definition: element_array_buffer.h:41
std::shared_ptr< VertexArrayBuffer > VertexArrayBufferPtr
Definition: d3d_target.h:41
Pixel data container.
Definition: pixel_buffer.h:52
static ID3D11Device * device_handle(const GraphicContextPtr &gc)
Returns the Direct3D device handle used by the graphic context.
static IDXGISwapChain * swap_chain_handle(const GraphicContextPtr &gc)
Returns the Direct3D swap chain handle used by the graphic context.
static void throw_if_failed(const char *text, HRESULT result)
Throws an exception with the specified text if the passed result is an error condition.
Render target buffer object class.
Definition: render_buffer.h:40
static ID3D11ShaderResourceView * srv_handle(const GraphicContextPtr &gc, const TexturePtr &texture)
Returns the Direct3D shader resource view handle used by the texture object.
std::shared_ptr< ElementArrayBuffer > ElementArrayBufferPtr
Definition: d3d_target.h:43
static ID3D11Buffer * buffer_handle(const GraphicContextPtr &gc, const VertexArrayBufferPtr &buffer)
Returns the Direct3D handle used by the buffer object.
static ID3D11RenderTargetView * back_buffer_rtv_handle(const GraphicContextPtr &gc)
Returns the Direct3D render target view for the swap chain back buffer.
static ID3D11Texture2D * texture2d_handle(const GraphicContextPtr &gc, const TexturePtr &texture)
Returns the Direct3D handle used by the texture object.
std::shared_ptr< UniformBuffer > UniformBufferPtr
Definition: d3d_target.h:47
std::shared_ptr< RenderBuffer > RenderBufferPtr
Definition: d3d_target.h:45
static void set_current()
Set this display target to be the current target.
std::shared_ptr< PixelBuffer > PixelBufferPtr
Definition: d3d_target.h:39
std::shared_ptr< GraphicContext > GraphicContextPtr
Definition: d3d_target.h:49
Vertex Array Buffer.
Definition: vertex_array_buffer.h:42
static ID3D11DeviceContext * device_context_handle(const GraphicContextPtr &gc)
Returns the Direct3D device context handle used by the graphic context.
Interface to drawing graphics.
Definition: graphic_context.h:269
Definition: Application/application.h:35
static bool is_current()
Returns true if this display target is the current target.