frontends/hgl: set framebuffer id

Reviewed-by: Alexander von Gluck IV <kallisti5@unixzen.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8323>
This commit is contained in:
X512 2021-01-04 22:18:17 -06:00 committed by Alexander von Gluck IV
parent 19ed0f0803
commit f47feaa72b
1 changed files with 3 additions and 0 deletions

View File

@ -217,6 +217,8 @@ hgl_st_manager_get_param(struct st_manager *smapi, enum st_manager_param param)
}
static uint32_t hgl_fb_ID = 0;
/**
* Create new framebuffer
*/
@ -254,6 +256,7 @@ hgl_create_st_framebuffer(struct hgl_context* context)
p_atomic_set(&buffer->stfbi->stamp, 1);
buffer->stfbi->st_manager_private = (void*)buffer;
buffer->stfbi->ID = p_atomic_inc_return(&hgl_fb_ID);
buffer->stfbi->state_manager = context->manager;
return buffer;