Просмотр исходного кода

don't alloc region in xmesa_surface_alloc(), fixes a mem leak

tags/mesa_20090313
Brian 18 лет назад
Родитель
Сommit
ffd37b1fda
1 измененных файлов: 1 добавлений и 3 удалений
  1. 1
    3
      src/mesa/drivers/x11/xm_surface.c

+ 1
- 3
src/mesa/drivers/x11/xm_surface.c Просмотреть файл

@@ -284,6 +284,7 @@ xmesa_surface_alloc(struct pipe_context *pipe, GLuint pipeFormat)
{
struct xmesa_surface *xms = CALLOC_STRUCT(xmesa_surface);

assert(pipe);
assert(pipeFormat);

xms->surface.surface.format = pipeFormat;
@@ -293,9 +294,6 @@ xmesa_surface_alloc(struct pipe_context *pipe, GLuint pipeFormat)
*/
softpipe_init_surface_funcs(&xms->surface);

assert(pipe);
xms->surface.surface.region = pipe->region_alloc(pipe, 1, 1, 1, 0x0);

return &xms->surface.surface;
}


Загрузка…
Отмена
Сохранить