diff options
Diffstat (limited to 'src/gallium/state_trackers/vega/image.c')
-rw-r--r-- | src/gallium/state_trackers/vega/image.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/state_trackers/vega/image.c b/src/gallium/state_trackers/vega/image.c index 44480876b6e..c42315e4bba 100644 --- a/src/gallium/state_trackers/vega/image.c +++ b/src/gallium/state_trackers/vega/image.c @@ -287,7 +287,7 @@ struct vg_image * image_create(VGImageFormat format, image->sampler_view = view; - vg_context_add_object(ctx, VG_OBJECT_IMAGE, image); + vg_context_add_object(ctx, &image->base); image_cleari(image, 0, 0, 0, image->width, image->height); return image; @@ -296,7 +296,7 @@ struct vg_image * image_create(VGImageFormat format, void image_destroy(struct vg_image *img) { struct vg_context *ctx = vg_current_context(); - vg_context_remove_object(ctx, VG_OBJECT_IMAGE, img); + vg_context_remove_object(ctx, &img->base); if (img->parent) { @@ -502,7 +502,7 @@ struct vg_image * image_child_image(struct vg_image *parent, array_append_data(parent->children_array, &image, 1); - vg_context_add_object(ctx, VG_OBJECT_IMAGE, image); + vg_context_add_object(ctx, &image->base); return image; } |