29 lines
902 B
Diff
29 lines
902 B
Diff
From 462716a04a43d23ff35aa0eb147f58fa336eff1c Mon Sep 17 00:00:00 2001
|
|
From: Imagination Technologies <powervr@imgtec.com>
|
|
Date: Wed, 23 Mar 2022 12:57:01 +0000
|
|
Subject: [PATCH 056/168] glapi: restore exec="dynamic"
|
|
|
|
This is needed for the dispatch table entry points used by the IMG
|
|
Rogue DDK driver, which have no implementation in Mesa. Using
|
|
exec="dynamic" avoids the need to create stubs in Mesa for the
|
|
unimplemented functions.
|
|
---
|
|
src/mapi/glapi/gen/api_exec_init.py | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
diff --git a/src/mapi/glapi/gen/api_exec_init.py b/src/mapi/glapi/gen/api_exec_init.py
|
|
index 3f862287768..28b2395ce47 100644
|
|
--- a/src/mapi/glapi/gen/api_exec_init.py
|
|
+++ b/src/mapi/glapi/gen/api_exec_init.py
|
|
@@ -34,6 +34,7 @@ import apiexec
|
|
|
|
exec_flavor_map = {
|
|
'beginend': None,
|
|
+ 'dynamic': None,
|
|
'dlist': '_mesa_',
|
|
'mesa': '_mesa_',
|
|
'skip': None,
|
|
--
|
|
2.17.1
|
|
|