summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/common/driverfuncs.c
diff options
context:
space:
mode:
authorPaul Berry <[email protected]>2012-11-14 14:26:22 -0800
committerTimothy Arceri <[email protected]>2017-03-16 14:14:18 +1100
commit77630841da53ec90415aee37fcc0ec4cf76941e1 (patch)
tree5b09e4e37a3f717293619bc34bcb6cdfffa0bf19 /src/mesa/drivers/common/driverfuncs.c
parent5bc527d39d2973f24ce062f23094177a660023c6 (diff)
mesa: Add SetBackgroundContext to dd_function_table
Acked-by: Timothy Arceri <[email protected]> Acked-by: Marek Olšák <[email protected]> Tested-by: Dieter Nützel <[email protected]> Tested-by: Mike Lothian <[email protected]>
Diffstat (limited to 'src/mesa/drivers/common/driverfuncs.c')
-rw-r--r--src/mesa/drivers/common/driverfuncs.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/common/driverfuncs.c b/src/mesa/drivers/common/driverfuncs.c
index 6069138e35d..642cd91ce1f 100644
--- a/src/mesa/drivers/common/driverfuncs.c
+++ b/src/mesa/drivers/common/driverfuncs.c
@@ -201,6 +201,9 @@ _mesa_init_driver_functions(struct dd_function_table *driver)
/* GL_ARB_texture_multisample */
driver->GetSamplePosition = NULL;
+
+ /* Multithreading */
+ driver->SetBackgroundContext = NULL;
}