1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** All rights reserved.
|
---|
5 | ** Contact: Nokia Corporation ([email protected])
|
---|
6 | **
|
---|
7 | ** This file is part of the QtOpenGL module of the Qt Toolkit.
|
---|
8 | **
|
---|
9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
10 | ** Commercial Usage
|
---|
11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
14 | ** a written agreement between you and Nokia.
|
---|
15 | **
|
---|
16 | ** GNU Lesser General Public License Usage
|
---|
17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
18 | ** General Public License version 2.1 as published by the Free Software
|
---|
19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
20 | ** packaging of this file. Please review the following information to
|
---|
21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
23 | **
|
---|
24 | ** In addition, as a special exception, Nokia gives you certain additional
|
---|
25 | ** rights. These rights are described in the Nokia Qt LGPL Exception
|
---|
26 | ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you have questions regarding the use of this file, please contact
|
---|
37 | ** Nokia at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | #ifndef QGLBUFFER_H
|
---|
43 | #define QGLBUFFER_H
|
---|
44 |
|
---|
45 | #include <QtCore/qscopedpointer.h>
|
---|
46 | #include <QtOpenGL/qgl.h>
|
---|
47 |
|
---|
48 | QT_BEGIN_HEADER
|
---|
49 |
|
---|
50 | QT_BEGIN_NAMESPACE
|
---|
51 |
|
---|
52 | QT_MODULE(OpenGL)
|
---|
53 |
|
---|
54 | class QGLBufferPrivate;
|
---|
55 |
|
---|
56 | class Q_OPENGL_EXPORT QGLBuffer
|
---|
57 | {
|
---|
58 | public:
|
---|
59 | enum Type
|
---|
60 | {
|
---|
61 | VertexBuffer = 0x8892, // GL_ARRAY_BUFFER
|
---|
62 | IndexBuffer = 0x8893, // GL_ELEMENT_ARRAY_BUFFER
|
---|
63 | PixelPackBuffer = 0x88EB, // GL_PIXEL_PACK_BUFFER
|
---|
64 | PixelUnpackBuffer = 0x88EC // GL_PIXEL_UNPACK_BUFFER
|
---|
65 | };
|
---|
66 |
|
---|
67 | QGLBuffer();
|
---|
68 | explicit QGLBuffer(QGLBuffer::Type type);
|
---|
69 | QGLBuffer(const QGLBuffer &other);
|
---|
70 | ~QGLBuffer();
|
---|
71 |
|
---|
72 | QGLBuffer &operator=(const QGLBuffer &other);
|
---|
73 |
|
---|
74 | enum UsagePattern
|
---|
75 | {
|
---|
76 | StreamDraw = 0x88E0, // GL_STREAM_DRAW
|
---|
77 | StreamRead = 0x88E1, // GL_STREAM_READ
|
---|
78 | StreamCopy = 0x88E2, // GL_STREAM_COPY
|
---|
79 | StaticDraw = 0x88E4, // GL_STATIC_DRAW
|
---|
80 | StaticRead = 0x88E5, // GL_STATIC_READ
|
---|
81 | StaticCopy = 0x88E6, // GL_STATIC_COPY
|
---|
82 | DynamicDraw = 0x88E8, // GL_DYNAMIC_DRAW
|
---|
83 | DynamicRead = 0x88E9, // GL_DYNAMIC_READ
|
---|
84 | DynamicCopy = 0x88EA // GL_DYNAMIC_COPY
|
---|
85 | };
|
---|
86 |
|
---|
87 | enum Access
|
---|
88 | {
|
---|
89 | ReadOnly = 0x88B8, // GL_READ_ONLY
|
---|
90 | WriteOnly = 0x88B9, // GL_WRITE_ONLY
|
---|
91 | ReadWrite = 0x88BA // GL_READ_WRITE
|
---|
92 | };
|
---|
93 |
|
---|
94 | QGLBuffer::Type type() const;
|
---|
95 |
|
---|
96 | QGLBuffer::UsagePattern usagePattern() const;
|
---|
97 | void setUsagePattern(QGLBuffer::UsagePattern value);
|
---|
98 |
|
---|
99 | bool create();
|
---|
100 | bool isCreated() const;
|
---|
101 |
|
---|
102 | void destroy();
|
---|
103 |
|
---|
104 | bool bind();
|
---|
105 | void release();
|
---|
106 |
|
---|
107 | static void release(QGLBuffer::Type type);
|
---|
108 |
|
---|
109 | GLuint bufferId() const;
|
---|
110 |
|
---|
111 | int size() const;
|
---|
112 |
|
---|
113 | bool read(int offset, void *data, int count);
|
---|
114 | void write(int offset, const void *data, int count);
|
---|
115 |
|
---|
116 | void allocate(const void *data, int count);
|
---|
117 | inline void allocate(int count) { allocate(0, count); }
|
---|
118 |
|
---|
119 | void *map(QGLBuffer::Access access);
|
---|
120 | bool unmap();
|
---|
121 |
|
---|
122 | private:
|
---|
123 | QGLBufferPrivate *d_ptr;
|
---|
124 |
|
---|
125 | Q_DECLARE_PRIVATE(QGLBuffer)
|
---|
126 | };
|
---|
127 |
|
---|
128 | QT_END_NAMESPACE
|
---|
129 |
|
---|
130 | QT_END_HEADER
|
---|
131 |
|
---|
132 | #endif
|
---|