mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-24 19:40:10 +01:00
gallium: fix mem leak (fee pstipple stage)
This commit is contained in:
parent
f73cfd9e5c
commit
28b3b07895
1 changed files with 2 additions and 0 deletions
|
|
@ -113,6 +113,8 @@ void draw_destroy( struct draw_context *draw )
|
|||
draw->pipeline.aaline->destroy( draw->pipeline.aaline );
|
||||
if (draw->pipeline.aapoint)
|
||||
draw->pipeline.aapoint->destroy( draw->pipeline.aapoint );
|
||||
if (draw->pipeline.pstipple)
|
||||
draw->pipeline.pstipple->destroy( draw->pipeline.pstipple );
|
||||
if (draw->pipeline.rasterize)
|
||||
draw->pipeline.rasterize->destroy( draw->pipeline.rasterize );
|
||||
tgsi_exec_machine_free_data(&draw->machine);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue