diff options
author | Bruce Cherniak <[email protected]> | 2017-08-02 18:14:19 -0500 |
---|---|---|
committer | Tim Rowley <[email protected]> | 2017-08-03 11:05:58 -0500 |
commit | 9966c85e01a4344d2a6bb76e432e0bed70d52ff6 (patch) | |
tree | 8f5930a30f9c99aeb8c11f4ae493febb75b70bd0 /src/gallium/state_trackers | |
parent | 1006cd512d2f62f1d96f4b045e8ec9ff29bf003d (diff) |
st/osmesa: add osmesa framebuffer iface hash table per st manager
Commit bbc29393d3 didn't include osmesa state_tracker. This patch adds
necessary initialization.
Fixes crash in OSMesa initialization.
Created-by: Charmaine Lee <[email protected]>
Tested-by: Bruce Cherniak <[email protected]>
Reviewed-by: Charmaine Lee <[email protected]>
Cc: 17.2 <[email protected]>
Diffstat (limited to 'src/gallium/state_trackers')
-rw-r--r-- | src/gallium/state_trackers/osmesa/osmesa.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/osmesa/osmesa.c b/src/gallium/state_trackers/osmesa/osmesa.c index 18f1b88128a..751d255c540 100644 --- a/src/gallium/state_trackers/osmesa/osmesa.c +++ b/src/gallium/state_trackers/osmesa/osmesa.c @@ -439,6 +439,7 @@ osmesa_st_framebuffer_validate(struct st_context_iface *stctx, return TRUE; } +static uint32_t osmesa_fb_ID = 0; static struct st_framebuffer_iface * osmesa_create_st_framebuffer(void) @@ -448,6 +449,8 @@ osmesa_create_st_framebuffer(void) stfbi->flush_front = osmesa_st_framebuffer_flush_front; stfbi->validate = osmesa_st_framebuffer_validate; p_atomic_set(&stfbi->stamp, 1); + stfbi->ID = p_atomic_inc_return(&osmesa_fb_ID); + stfbi->state_manager = get_st_manager(); } return stfbi; } @@ -508,6 +511,14 @@ osmesa_find_buffer(enum pipe_format color_format, static void osmesa_destroy_buffer(struct osmesa_buffer *osbuffer) { + struct st_api *stapi = get_st_api(); + + /* + * Notify the state manager that the associated framebuffer interface + * is no longer valid. + */ + stapi->destroy_drawable(stapi, osbuffer->stfb); + FREE(osbuffer->stfb); FREE(osbuffer); } |