Este sitio web funciona mejor con JavaScript.
Inicio
Ayuda
Iniciar sesión
lolengine
/
lol
réplica de
https://github.com/lolengine/lol
Seguir
1
Destacar
0
Fork
0
Código
Incidencias
0
Lanzamientos
0
Wiki
Actividad
Explorar el Código
gpu: fix a memory leak in the VertexBuffer and IndexBuffer classes.
legacy
Sam Hocevar
sam
hace 12 años
padre
2d34fd8358
commit
64b37d8897
Se han
modificado 2 ficheros
con
2 adiciones
y
0 borrados
Dividir vista
Opciones de diferencias
Mostrar estadísticas
Descargar archivo de parche
Descargar archivo de diferencias
+1
-0
src/gpu/indexbuffer.cpp
+1
-0
src/gpu/vertexbuffer.cpp
+ 1
- 0
src/gpu/indexbuffer.cpp
Ver fichero
@@ -81,6 +81,7 @@ IndexBuffer::~IndexBuffer()
glDeleteBuffers(1, &m_data->m_ibo);
delete[] m_data->m_memory;
#endif
delete m_data;
}
void *IndexBuffer::Lock(size_t offset, size_t size)
+ 1
- 0
src/gpu/vertexbuffer.cpp
Ver fichero
@@ -487,6 +487,7 @@ VertexBuffer::~VertexBuffer()
glDeleteBuffers(1, &m_data->m_vbo);
delete[] m_data->m_memory;
#endif
delete m_data;
}
void *VertexBuffer::Lock(size_t offset, size_t size)
Escribir
Vista previa
Cargando…
Cancelar
Guardar