vertex_array_vector.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 "vertex_array_buffer.h"
32 #include "staging_vector.h"
33 
34 namespace uicore
35 {
37  template<typename Type>
39  {
40  public:
43  {
44  }
45 
47  : _buffer(buffer)
48  {
49  }
50 
52  : _buffer(VertexArrayBuffer::create(gc, size * sizeof(Type), usage))
53  {
54  }
55 
56  VertexArrayVector(const GraphicContextPtr &gc, Type *data, int size, BufferUsage usage = usage_static_draw)
57  : _buffer(VertexArrayBuffer::create(gc, data, size * sizeof(Type), usage))
58  {
59  }
60 
61  VertexArrayVector(const GraphicContextPtr &gc, const std::vector<Type> &data, BufferUsage usage = usage_static_draw)
62  : _buffer(VertexArrayBuffer::create(gc, data.empty() ? (Type*)0 : &data[0], data.size() * sizeof(Type), usage))
63  {
64  }
65 
67  const VertexArrayBufferPtr &buffer() const { return _buffer; }
68 
69  operator const VertexArrayBufferPtr &() const { return buffer(); }
70 
72  void upload_data(const GraphicContextPtr &gc, int offset, const Type *data, int size)
73  {
74  _buffer->upload_data(gc, offset * sizeof(Type), data, size * sizeof(Type));
75  }
76 
78  void upload_data(const GraphicContextPtr &gc, int offset, const std::vector<Type> &data)
79  {
80  _buffer->upload_data(gc, offset, data.data(), data.size() * sizeof(Type));
81  }
82 
84  void copy_from(const GraphicContextPtr &gc, StagingVector<Type> &buffer, int dest_pos = 0, int src_pos = 0, int size = -1)
85  {
86  if (size != -1)
87  size = size * sizeof(Type);
88  _buffer->copy_from(gc, buffer, dest_pos * sizeof(Type), src_pos * sizeof(Type), size);
89  }
90 
92  void copy_to(const GraphicContextPtr &gc, StagingVector<Type> &buffer, int dest_pos = 0, int src_pos = 0, int size = -1)
93  {
94  if (size != -1)
95  size = size * sizeof(Type);
96  _buffer->copy_to(gc, buffer, dest_pos * sizeof(Type), src_pos * sizeof(Type), size);
97  }
98 
99  private:
100  VertexArrayBufferPtr _buffer;
101  };
102 }
void upload_data(const GraphicContextPtr &gc, int offset, const std::vector< Type > &data)
Uploads data to vertex array buffer.
Definition: vertex_array_vector.h:78
VertexArrayVector(const GraphicContextPtr &gc, int size, BufferUsage usage=usage_static_draw)
Definition: vertex_array_vector.h:51
std::shared_ptr< VertexArrayBuffer > VertexArrayBufferPtr
Definition: d3d_target.h:41
VertexArrayVector()
Constructs a vertex array vector.
Definition: vertex_array_vector.h:42
BufferUsage
Array Buffer usage enum.
Definition: buffer_usage.h:35
void upload_data(const GraphicContextPtr &gc, int offset, const Type *data, int size)
Uploads data to vertex array buffer.
Definition: vertex_array_vector.h:72
void copy_from(const GraphicContextPtr &gc, StagingVector< Type > &buffer, int dest_pos=0, int src_pos=0, int size=-1)
Copies data from transfer buffer.
Definition: vertex_array_vector.h:84
VertexArrayVector(const VertexArrayBufferPtr &buffer)
Definition: vertex_array_vector.h:46
Definition: buffer_usage.h:40
Typed access to a vertex array buffer.
Definition: vertex_array_vector.h:38
void copy_to(const GraphicContextPtr &gc, StagingVector< Type > &buffer, int dest_pos=0, int src_pos=0, int size=-1)
Copies data to transfer buffer.
Definition: vertex_array_vector.h:92
VertexArrayVector(const GraphicContextPtr &gc, const std::vector< Type > &data, BufferUsage usage=usage_static_draw)
Definition: vertex_array_vector.h:61
VertexArrayVector(const GraphicContextPtr &gc, Type *data, int size, BufferUsage usage=usage_static_draw)
Definition: vertex_array_vector.h:56
std::shared_ptr< GraphicContext > GraphicContextPtr
Definition: d3d_target.h:49
Vertex Array Buffer.
Definition: vertex_array_buffer.h:42
Typed access to a transfer buffer.
Definition: staging_vector.h:37
Definition: Application/application.h:35
const VertexArrayBufferPtr & buffer() const
Returns the buffer used by the vector.
Definition: vertex_array_vector.h:67