summaryrefslogtreecommitdiff
path: root/src/gallium/include
diff options
context:
space:
mode:
authorMarek Olšák <marek.olsak@amd.com>2022-11-27 12:21:45 -0500
committerMarge Bot <emma+marge@anholt.net>2022-12-09 13:14:03 +0000
commit64ee8d2430a769134f88af92873b06b44f78e0c6 (patch)
treee93b05b0d2f2ea8e5ccdf1e1dc1fc7f75b213c66 /src/gallium/include
parentec564cf0435445dbda96f487a8ecd5b58a40ea4e (diff)
gallium: rename st_context_iface::st_manager_private to frontend_context
It's really dri_context for DRI. Reviewed-by: Emma Anholt <emma@anholt.net> Reviewed-by: Adam Jackson <ajax@redhat.com> Reviewed-by: Yonggang Luo <luoyonggang@gmail.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/20027>
Diffstat (limited to 'src/gallium/include')
-rw-r--r--src/gallium/include/frontend/api.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/include/frontend/api.h b/src/gallium/include/frontend/api.h
index 307b15affb4..693ea83a071 100644
--- a/src/gallium/include/frontend/api.h
+++ b/src/gallium/include/frontend/api.h
@@ -366,12 +366,12 @@ struct st_framebuffer_iface
struct st_context_iface
{
/**
- * Available for the gallium frontend and the manager to use.
+ * The frontend context. (such as dri_context)
*/
- void *st_manager_private;
+ void *frontend_context;
/**
- * The frontend manager that manages this object.
+ * The frontend screen. (such as dri_screen)
*/
struct pipe_frontend_screen *frontend_screen;