mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-05 15:48:19 +00:00
use extension for vbo:s
This commit is contained in:
parent
06d0ab30e6
commit
4378e3e4e8
|
@ -67,7 +67,7 @@ static void draw_quad(bool _bflush = false)
|
||||||
{
|
{
|
||||||
if (!_bflush)
|
if (!_bflush)
|
||||||
g_iVertexEnd += 4;
|
g_iVertexEnd += 4;
|
||||||
if(GLEW_VERSION_2_0)
|
if(GLEW_ARB_vertex_buffer_object)
|
||||||
{
|
{
|
||||||
// set the data
|
// set the data
|
||||||
vertex_buffer.data(g_pVertices, vertexBufferSize * sizeof(custom_vertex), GL_DYNAMIC_DRAW);
|
vertex_buffer.data(g_pVertices, vertexBufferSize * sizeof(custom_vertex), GL_DYNAMIC_DRAW);
|
||||||
|
@ -135,7 +135,7 @@ bool gfx_init()
|
||||||
for (int i = 0; i < vertexBufferSize; i++)
|
for (int i = 0; i < vertexBufferSize; i++)
|
||||||
g_pVertices[i].pos.z = -5.0f;
|
g_pVertices[i].pos.z = -5.0f;
|
||||||
|
|
||||||
if(GLEW_VERSION_2_0)
|
if(GLEW_ARB_vertex_buffer_object)
|
||||||
{
|
{
|
||||||
// set the streams
|
// set the streams
|
||||||
vertex_buffer.data(g_pVertices, sizeof(vertexBufferSize), GL_DYNAMIC_DRAW);
|
vertex_buffer.data(g_pVertices, sizeof(vertexBufferSize), GL_DYNAMIC_DRAW);
|
||||||
|
|
Loading…
Reference in a new issue