d3d_target.h
1 /*
2 ** UICore
3 ** Copyright (c) 1997-2015 The UICore Team
4 **
5 ** This software is provided 'as-is', without any express or implied
6 ** warranty. In no event will the authors be held liable for any damages
7 ** arising from the use of this software.
8 **
9 ** Permission is granted to anyone to use this software for any purpose,
10 ** including commercial applications, and to alter it and redistribute it
11 ** freely, subject to the following restrictions:
12 **
13 ** 1. The origin of this software must not be misrepresented; you must not
14 ** claim that you wrote the original software. If you use this software
15 ** in a product, an acknowledgment in the product documentation would be
16 ** appreciated but is not required.
17 ** 2. Altered source versions must be plainly marked as such, and must not be
18 ** misrepresented as being the original software.
19 ** 3. This notice may not be removed or altered from any source distribution.
20 **
21 ** Note: Some of the libraries UICore may link to may have additional
22 ** requirements or restrictions.
23 **
24 ** File Author(s):
25 **
26 ** Magnus Norddahl
27 */
28 
29 #pragma once
30 
31 #include "../Display/display_target.h"
32 #include <memory>
33 #include <d3d11.h>
34 
35 namespace uicore
36 {
37  class Texture;
38  typedef std::shared_ptr<Texture> TexturePtr;
39  class PixelBuffer;
40  typedef std::shared_ptr<PixelBuffer> PixelBufferPtr;
42  typedef std::shared_ptr<VertexArrayBuffer> VertexArrayBufferPtr;
44  typedef std::shared_ptr<ElementArrayBuffer> ElementArrayBufferPtr;
45  class RenderBuffer;
46  typedef std::shared_ptr<RenderBuffer> RenderBufferPtr;
48  typedef std::shared_ptr<UniformBuffer> UniformBufferPtr;
50  typedef std::shared_ptr<GraphicContext> GraphicContextPtr;
51 
53  class D3DTarget
54  {
55  public:
59  static bool is_current();
60 
64  static ID3D11Texture2D *texture2d_handle(const GraphicContextPtr &gc, const TexturePtr &texture);
65 
69  static ID3D11Texture2D *texture2d_handle(const GraphicContextPtr &gc, const PixelBufferPtr &pixel_buffer);
70 
74  static ID3D11Texture2D *texture2d_handle(const GraphicContextPtr &gc, const RenderBufferPtr &render_buffer);
75 
79  static ID3D11Buffer *buffer_handle(const GraphicContextPtr &gc, const VertexArrayBufferPtr &buffer);
80 
84  static ID3D11Buffer *buffer_handle(const GraphicContextPtr &gc, const ElementArrayBufferPtr &buffer);
85 
89  static ID3D11Buffer *buffer_handle(const GraphicContextPtr &gc, const UniformBufferPtr &buffer);
90 
94  static ID3D11ShaderResourceView *srv_handle(const GraphicContextPtr &gc, const TexturePtr &texture);
95 
99  static ID3D11Device *device_handle(const GraphicContextPtr &gc);
100 
104  static ID3D11DeviceContext *device_context_handle(const GraphicContextPtr &gc);
105 
109  static IDXGISwapChain *swap_chain_handle(const GraphicContextPtr &gc);
110 
114  static ID3D11RenderTargetView *back_buffer_rtv_handle(const GraphicContextPtr &gc);
115 
117  static void throw_if_failed(const char *text, HRESULT result);
118 
120  static void set_current();
121  };
122 }
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
Uniform Buffer.
Definition: uniform_buffer.h:44
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.