0027607: Visualization - Implement adaptive screen space sampling in path tracing
[occt.git] / src / OpenGl / OpenGl_VertexBuffer.cxx
CommitLineData
5e27df78 1// Created by: Kirill GAVRILOV
d5f74e42 2// Copyright (c) 2013-2014 OPEN CASCADE SAS
5e27df78 3//
973c2be1 4// This file is part of Open CASCADE Technology software library.
5e27df78 5//
d5f74e42 6// This library is free software; you can redistribute it and/or modify it under
7// the terms of the GNU Lesser General Public License version 2.1 as published
973c2be1 8// by the Free Software Foundation, with special exception defined in the file
9// OCCT_LGPL_EXCEPTION.txt. Consult the file LICENSE_LGPL_21.txt included in OCCT
10// distribution for complete text of the license and disclaimer of any warranty.
5e27df78 11//
973c2be1 12// Alternatively, this file may be used under the terms of Open CASCADE
13// commercial license or contractual agreement.
5e27df78 14
15#include <OpenGl_VertexBuffer.hxx>
16
17#include <OpenGl_Context.hxx>
18#include <Standard_Assert.hxx>
19
5e27df78 20
92efcf78 21IMPLEMENT_STANDARD_RTTIEXT(OpenGl_VertexBuffer,OpenGl_Resource)
22
5e27df78 23// =======================================================================
24// function : OpenGl_VertexBuffer
25// purpose :
26// =======================================================================
27OpenGl_VertexBuffer::OpenGl_VertexBuffer()
28: OpenGl_Resource(),
7d3e64ef 29 myOffset (NULL),
5e27df78 30 myBufferId (NO_BUFFER),
31 myComponentsNb (4),
32 myElemsNb (0),
33 myDataType (GL_FLOAT)
34{
35 //
36}
37
38// =======================================================================
39// function : ~OpenGl_VertexBuffer
40// purpose :
41// =======================================================================
42OpenGl_VertexBuffer::~OpenGl_VertexBuffer()
43{
44 Release (NULL);
45}
46
47// =======================================================================
48// function : GetTarget
49// purpose :
50// =======================================================================
51GLenum OpenGl_VertexBuffer::GetTarget() const
52{
53 return GL_ARRAY_BUFFER;
54}
55
56// =======================================================================
57// function : Create
58// purpose :
59// =======================================================================
60bool OpenGl_VertexBuffer::Create (const Handle(OpenGl_Context)& theGlCtx)
61{
62 if (myBufferId == NO_BUFFER)
63 {
4e1523ef 64 theGlCtx->core15fwd->glGenBuffers (1, &myBufferId);
5e27df78 65 }
66 return myBufferId != NO_BUFFER;
67}
68
69// =======================================================================
70// function : Release
71// purpose :
72// =======================================================================
10b9c7df 73void OpenGl_VertexBuffer::Release (OpenGl_Context* theGlCtx)
5e27df78 74{
75 if (myBufferId == NO_BUFFER)
76 {
77 return;
78 }
79
80 // application can not handle this case by exception - this is bug in code
81 Standard_ASSERT_RETURN (theGlCtx != NULL,
82 "OpenGl_VertexBuffer destroyed without GL context! Possible GPU memory leakage...",);
83
fd4a6963 84 if (theGlCtx->IsValid())
85 {
4e1523ef 86 theGlCtx->core15fwd->glDeleteBuffers (1, &myBufferId);
fd4a6963 87 }
7d3e64ef 88 myOffset = NULL;
5e27df78 89 myBufferId = NO_BUFFER;
90}
91
92// =======================================================================
93// function : Bind
94// purpose :
95// =======================================================================
96void OpenGl_VertexBuffer::Bind (const Handle(OpenGl_Context)& theGlCtx) const
97{
4e1523ef 98 theGlCtx->core15fwd->glBindBuffer (GetTarget(), myBufferId);
5e27df78 99}
100
101// =======================================================================
102// function : Unbind
103// purpose :
104// =======================================================================
105void OpenGl_VertexBuffer::Unbind (const Handle(OpenGl_Context)& theGlCtx) const
106{
4e1523ef 107 theGlCtx->core15fwd->glBindBuffer (GetTarget(), NO_BUFFER);
5e27df78 108}
109
110// =======================================================================
871fa103 111// function : init
5e27df78 112// purpose :
113// =======================================================================
871fa103 114bool OpenGl_VertexBuffer::init (const Handle(OpenGl_Context)& theGlCtx,
5e27df78 115 const GLuint theComponentsNb,
116 const GLsizei theElemsNb,
871fa103 117 const void* theData,
118 const GLenum theDataType,
119 const GLsizei theStride)
5e27df78 120{
121 if (!Create (theGlCtx))
122 {
123 return false;
124 }
125
126 Bind (theGlCtx);
871fa103 127 myDataType = theDataType;
5e27df78 128 myComponentsNb = theComponentsNb;
129 myElemsNb = theElemsNb;
4e1523ef 130 theGlCtx->core15fwd->glBufferData (GetTarget(), GLsizeiptr(myElemsNb) * theStride, theData, GL_STATIC_DRAW);
5e27df78 131 bool isDone = (glGetError() == GL_NO_ERROR); // GL_OUT_OF_MEMORY
132 Unbind (theGlCtx);
133 return isDone;
134}
135
136// =======================================================================
871fa103 137// function : subData
5e27df78 138// purpose :
139// =======================================================================
871fa103 140bool OpenGl_VertexBuffer::subData (const Handle(OpenGl_Context)& theGlCtx,
5e27df78 141 const GLsizei theElemFrom,
142 const GLsizei theElemsNb,
871fa103 143 const void* theData,
144 const GLenum theDataType)
5e27df78 145{
871fa103 146 if (!IsValid() || myDataType != theDataType ||
5e27df78 147 theElemFrom < 0 || ((theElemFrom + theElemsNb) > myElemsNb))
148 {
149 return false;
150 }
151
152 Bind (theGlCtx);
871fa103 153 const size_t aDataSize = sizeOfGlType (theDataType);
4e1523ef 154 theGlCtx->core15fwd->glBufferSubData (GetTarget(),
155 GLintptr(theElemFrom) * GLintptr (myComponentsNb) * aDataSize, // offset in bytes
156 GLsizeiptr(theElemsNb) * GLsizeiptr(myComponentsNb) * aDataSize, // size in bytes
157 theData);
5e27df78 158 bool isDone = (glGetError() == GL_NO_ERROR); // some dummy error
159 Unbind (theGlCtx);
160 return isDone;
161}
162
5e27df78 163// =======================================================================
164// function : BindVertexAttrib
165// purpose :
166// =======================================================================
167void OpenGl_VertexBuffer::BindVertexAttrib (const Handle(OpenGl_Context)& theGlCtx,
168 const GLuint theAttribLoc) const
169{
170 if (!IsValid() || theAttribLoc == GLuint (-1))
171 {
172 return;
173 }
174 Bind (theGlCtx);
4e1523ef 175 theGlCtx->core20fwd->glEnableVertexAttribArray (theAttribLoc);
176 theGlCtx->core20fwd->glVertexAttribPointer (theAttribLoc, GLint (myComponentsNb), myDataType, GL_FALSE, 0, myOffset);
5e27df78 177}
178
179// =======================================================================
180// function : UnbindVertexAttrib
181// purpose :
182// =======================================================================
183void OpenGl_VertexBuffer::UnbindVertexAttrib (const Handle(OpenGl_Context)& theGlCtx,
184 const GLuint theAttribLoc) const
185{
186 if (!IsValid() || theAttribLoc == GLuint (-1))
187 {
188 return;
189 }
4e1523ef 190 theGlCtx->core20fwd->glDisableVertexAttribArray (theAttribLoc);
5e27df78 191 Unbind (theGlCtx);
192}
193
194// =======================================================================
7d3e64ef 195// function : BindAllAttributes
5e27df78 196// purpose :
197// =======================================================================
7d3e64ef 198void OpenGl_VertexBuffer::BindAllAttributes (const Handle(OpenGl_Context)& ) const
5e27df78 199{
7d3e64ef 200 //
871fa103 201}
202
203// =======================================================================
7d3e64ef 204// function : BindPositionAttribute
871fa103 205// purpose :
206// =======================================================================
7d3e64ef 207void OpenGl_VertexBuffer::BindPositionAttribute (const Handle(OpenGl_Context)& ) const
871fa103 208{
209 //
210}
211
212// =======================================================================
7d3e64ef 213// function : UnbindAllAttributes
871fa103 214// purpose :
215// =======================================================================
7d3e64ef 216void OpenGl_VertexBuffer::UnbindAllAttributes (const Handle(OpenGl_Context)& ) const
871fa103 217{
218 //
219}
220
221// =======================================================================
7d3e64ef 222// function : HasColorAttribute
871fa103 223// purpose :
224// =======================================================================
7d3e64ef 225bool OpenGl_VertexBuffer::HasColorAttribute() const
871fa103 226{
7d3e64ef 227 return false;
871fa103 228}
229
230// =======================================================================
7d3e64ef 231// function : HasNormalAttribute
871fa103 232// purpose :
233// =======================================================================
7d3e64ef 234bool OpenGl_VertexBuffer::HasNormalAttribute() const
871fa103 235{
236 return false;
5e27df78 237}