1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
//
// Copyright (c) 2002-2012 The ANGLE Project Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// IndexBuffer.h: Defines the abstract IndexBuffer class and IndexBufferInterface
// class with derivations, classes that perform graphics API agnostic index buffer operations.
#ifndef LIBANGLE_RENDERER_D3D_INDEXBUFFER_H_
#define LIBANGLE_RENDERER_D3D_INDEXBUFFER_H_
#include "common/PackedEnums.h"
#include "common/angleutils.h"
#include "libANGLE/Error.h"
namespace gl
{
class Context;
} // namespace gl
namespace rx
{
class BufferFactoryD3D;
class IndexBuffer : angle::NonCopyable
{
public:
IndexBuffer();
virtual ~IndexBuffer();
virtual angle::Result initialize(const gl::Context *context,
unsigned int bufferSize,
gl::DrawElementsType indexType,
bool dynamic) = 0;
virtual angle::Result mapBuffer(const gl::Context *context,
unsigned int offset,
unsigned int size,
void **outMappedMemory) = 0;
virtual angle::Result unmapBuffer(const gl::Context *context) = 0;
virtual angle::Result discard(const gl::Context *context) = 0;
virtual gl::DrawElementsType getIndexType() const = 0;
virtual unsigned int getBufferSize() const = 0;
virtual angle::Result setSize(const gl::Context *context,
unsigned int bufferSize,
gl::DrawElementsType indexType) = 0;
unsigned int getSerial() const;
protected:
void updateSerial();
private:
unsigned int mSerial;
static unsigned int mNextSerial;
};
class IndexBufferInterface : angle::NonCopyable
{
public:
IndexBufferInterface(BufferFactoryD3D *factory, bool dynamic);
virtual ~IndexBufferInterface();
virtual angle::Result reserveBufferSpace(const gl::Context *context,
unsigned int size,
gl::DrawElementsType indexType) = 0;
gl::DrawElementsType getIndexType() const;
unsigned int getBufferSize() const;
unsigned int getSerial() const;
angle::Result mapBuffer(const gl::Context *context,
unsigned int size,
void **outMappedMemory,
unsigned int *streamOffset);
angle::Result unmapBuffer(const gl::Context *context);
IndexBuffer *getIndexBuffer() const;
protected:
unsigned int getWritePosition() const;
void setWritePosition(unsigned int writePosition);
angle::Result discard(const gl::Context *context);
angle::Result setBufferSize(const gl::Context *context,
unsigned int bufferSize,
gl::DrawElementsType indexType);
private:
IndexBuffer *mIndexBuffer;
unsigned int mWritePosition;
bool mDynamic;
};
class StreamingIndexBufferInterface : public IndexBufferInterface
{
public:
explicit StreamingIndexBufferInterface(BufferFactoryD3D *factory);
~StreamingIndexBufferInterface() override;
angle::Result reserveBufferSpace(const gl::Context *context,
unsigned int size,
gl::DrawElementsType indexType) override;
};
class StaticIndexBufferInterface : public IndexBufferInterface
{
public:
explicit StaticIndexBufferInterface(BufferFactoryD3D *factory);
~StaticIndexBufferInterface() override;
angle::Result reserveBufferSpace(const gl::Context *context,
unsigned int size,
gl::DrawElementsType indexType) override;
};
} // namespace rx
#endif // LIBANGLE_RENDERER_D3D_INDEXBUFFER_H_
|