mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-01 05:58:05 +02:00
rbug: only add textures to the list
rbug-gui cannot display buffers, so it's pointless to add them. Reviewed-by: Roland Scheidegger <sroland@vmware.com>
This commit is contained in:
parent
ddcbe9c526
commit
8db7dacf29
1 changed files with 5 additions and 2 deletions
|
|
@ -58,7 +58,8 @@ rbug_resource_create(struct rbug_screen *rb_screen,
|
|||
rb_resource->base.screen = &rb_screen->base;
|
||||
rb_resource->resource = resource;
|
||||
|
||||
rbug_screen_add_to_list(rb_screen, resources, rb_resource);
|
||||
if (resource->target != PIPE_BUFFER)
|
||||
rbug_screen_add_to_list(rb_screen, resources, rb_resource);
|
||||
|
||||
return &rb_resource->base;
|
||||
|
||||
|
|
@ -71,7 +72,9 @@ void
|
|||
rbug_resource_destroy(struct rbug_resource *rb_resource)
|
||||
{
|
||||
struct rbug_screen *rb_screen = rbug_screen(rb_resource->base.screen);
|
||||
rbug_screen_remove_from_list(rb_screen, resources, rb_resource);
|
||||
|
||||
if (rb_resource->base.target != PIPE_BUFFER)
|
||||
rbug_screen_remove_from_list(rb_screen, resources, rb_resource);
|
||||
|
||||
pipe_resource_reference(&rb_resource->resource, NULL);
|
||||
FREE(rb_resource);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue