mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-06 13:48:06 +02:00
draw: fix memory leak introduced 7720ce32a
We need to free memory allocation PrimitiveOffsets in draw_gs_destroy().
This fixes memory leak found while running piglit on windows.
Fixes: 7720ce32a ("draw: add support to tgsi paths for geometry streams. (v2)")
Tested with piglit
Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Charmaine Lee <charmainel@vmware.com>
Reviewed-by: Dave Airlie <airlied@redhat.com>
This commit is contained in:
parent
d2aa65eb18
commit
926a6a35cf
1 changed files with 3 additions and 1 deletions
|
|
@ -753,8 +753,10 @@ void draw_gs_destroy( struct draw_context *draw )
|
|||
{
|
||||
int i;
|
||||
if (draw->gs.tgsi.machine) {
|
||||
for (i = 0; i < TGSI_MAX_VERTEX_STREAMS; i++)
|
||||
for (i = 0; i < TGSI_MAX_VERTEX_STREAMS; i++) {
|
||||
align_free(draw->gs.tgsi.machine->Primitives[i]);
|
||||
align_free(draw->gs.tgsi.machine->PrimitiveOffsets[i]);
|
||||
}
|
||||
tgsi_exec_machine_destroy(draw->gs.tgsi.machine);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue