mirror of
https://github.com/RetroDECK/Supermodel.git
synced 2024-11-23 06:15:37 +00:00
85 lines
1.3 KiB
C++
85 lines
1.3 KiB
C++
#include "VBO.h"
|
|
|
|
namespace New3D {
|
|
|
|
VBO::VBO()
|
|
{
|
|
m_id = 0;
|
|
m_target = 0;
|
|
m_capacity = 0;
|
|
m_size = 0;
|
|
}
|
|
|
|
void VBO::Create(GLenum target, GLenum usage, GLsizeiptr size, const void* data)
|
|
{
|
|
glGenBuffers(1, &m_id); // create a vbo
|
|
glBindBuffer(target, m_id); // activate vbo id to use
|
|
glBufferData(target, size, data, usage); // upload data to video card
|
|
|
|
m_target = target;
|
|
m_capacity = size;
|
|
m_size = 0;
|
|
|
|
Bind(false); // unbind
|
|
}
|
|
|
|
void VBO::BufferSubData(GLintptr offset, GLsizeiptr size, const GLvoid* data)
|
|
{
|
|
glBufferSubData(m_target, offset, size, data);
|
|
}
|
|
|
|
bool VBO::AppendData(GLsizeiptr size, const GLvoid* data)
|
|
{
|
|
if (size == 0 || !data) {
|
|
return true; // nothing to do
|
|
}
|
|
|
|
if (m_size + size >= m_capacity) {
|
|
return false;
|
|
}
|
|
|
|
BufferSubData(m_size, size, data);
|
|
|
|
m_size += size;
|
|
|
|
return true;
|
|
}
|
|
|
|
void VBO::Reset()
|
|
{
|
|
m_size = 0;
|
|
}
|
|
|
|
void VBO::Destroy()
|
|
{
|
|
if (m_id) {
|
|
glDeleteBuffers(1, &m_id);
|
|
m_id = 0;
|
|
m_target = 0;
|
|
m_capacity = 0;
|
|
m_size = 0;
|
|
}
|
|
}
|
|
|
|
void VBO::Bind(bool enable)
|
|
{
|
|
if (enable) {
|
|
glBindBuffer(m_target, m_id);
|
|
}
|
|
else {
|
|
glBindBuffer(m_target, 0);
|
|
}
|
|
}
|
|
|
|
int VBO::GetSize()
|
|
{
|
|
return m_size;
|
|
}
|
|
|
|
int VBO::GetCapacity()
|
|
{
|
|
return m_capacity;
|
|
}
|
|
|
|
} // New3D
|