diff --git a/.pick_status.json b/.pick_status.json index 5160e0a0497..f1c2fb24f1c 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -944,7 +944,7 @@ "description": "gallium/vl: stub vl_video_buffer_create_as_resource", "nominated": true, "nomination_type": 0, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": null, "notes": null diff --git a/src/gallium/auxiliary/vl/vl_stubs.c b/src/gallium/auxiliary/vl/vl_stubs.c index 194e7a8700b..11573d33a36 100644 --- a/src/gallium/auxiliary/vl/vl_stubs.c +++ b/src/gallium/auxiliary/vl/vl_stubs.c @@ -108,6 +108,16 @@ vl_video_buffer_create_ex2(struct pipe_context *pipe, return NULL; } +struct pipe_video_buffer * +vl_video_buffer_create_as_resource(struct pipe_context *pipe, + const struct pipe_video_buffer *tmpl, + const uint64_t *modifiers, + int modifiers_count) +{ + assert(0); + return NULL; +} + void vl_video_buffer_destroy(struct pipe_video_buffer *buffer) {