Revert "anv: Stop generating weak references for instance entrypoints"
authorJason Ekstrand <jason.ekstrand@intel.com>
Mon, 15 Oct 2018 02:56:47 +0000 (21:56 -0500)
committerJason Ekstrand <jason.ekstrand@intel.com>
Thu, 18 Oct 2018 20:36:26 +0000 (15:36 -0500)
This reverts commit 00bb42105d6edf6e432c0e3712ffb9d3eb0aece4.  It was
not as well thought out as I had intended and broke the build when
VK_KHR_display is disabled in the build.

src/intel/vulkan/anv_entrypoints_gen.py

index 25a532fd706766fac9a4ec1ba448a6a2192b76d2..beb658b8660e2fd50c657acdada25872c85f3568 100644 (file)
@@ -227,6 +227,19 @@ ${strmap(device_strmap, 'device')}
  * either pick the correct entry point.
  */
 
+% for e in instance_entrypoints:
+  % if e.alias:
+    <% continue %>
+  % endif
+  % if e.guard is not None:
+#ifdef ${e.guard}
+  % endif
+  ${e.return_type} ${e.prefixed_name('anv')}(${e.decl_params()}) __attribute__ ((weak));
+  % if e.guard is not None:
+#endif // ${e.guard}
+  % endif
+% endfor
+
 const struct anv_instance_dispatch_table anv_instance_dispatch_table = {
 % for e in instance_entrypoints:
   % if e.guard is not None: