mesa/spirv: move and rename nir_spirv_supported_capabilities
authorAlejandro Piñeiro <apinheiro@igalia.com>
Thu, 7 Dec 2017 08:38:41 +0000 (09:38 +0100)
committerAlejandro Piñeiro <apinheiro@igalia.com>
Thu, 7 Dec 2017 16:15:11 +0000 (17:15 +0100)
To avoid any vulkan driver to include the GL mtypes.h. Renamed as
eventually this could be used by drivers not using nir.

v2: remove compiler/spirv/spirv.h from mtypes (Alejandro)
v3: added the definition at compiler/shader_info.h (Jason Ekstrand)

Reviewed-by: Jason Ekstrand <jason@jlekstrand.net>
src/compiler/shader_info.h
src/compiler/spirv/nir_spirv.h
src/mesa/main/mtypes.h

index bcb3f0fffacb7db2fa4fb6109675d4610acfa900..c9140ba97520d7250afe35e520e4ac2e69c2d618 100644 (file)
 extern "C" {
 #endif
 
+struct spirv_supported_capabilities {
+   bool float64;
+   bool image_ms_array;
+   bool tessellation;
+   bool draw_parameters;
+   bool image_read_without_format;
+   bool image_write_without_format;
+   bool int64;
+   bool multiview;
+   bool variable_pointers;
+   bool storage_16bit;
+};
+
 typedef struct shader_info {
    const char *name;
 
index 113bd710a00ca93319649c91bcc6f4b11466776b..a2c40e57d1890a128fe313629c7871458e7c1d8e 100644 (file)
@@ -29,7 +29,7 @@
 #define _NIR_SPIRV_H_
 
 #include "compiler/nir/nir.h"
-#include "main/mtypes.h"
+#include "compiler/shader_info.h"
 
 #ifdef __cplusplus
 extern "C" {
@@ -58,7 +58,7 @@ struct spirv_to_nir_options {
     */
    bool lower_workgroup_access_to_offsets;
 
-   struct nir_spirv_supported_capabilities caps;
+   struct spirv_supported_capabilities caps;
 
    struct {
       void (*func)(void *private_data,
index 7b7137624c75e5a72666cdb3c3a713e1cc05c76e..397b113dfbccce8d737011e612c2432869cd07b4 100644 (file)
@@ -3578,19 +3578,6 @@ struct gl_program_constants
    GLuint MaxShaderStorageBlocks;
 };
 
-struct nir_spirv_supported_capabilities {
-   bool float64;
-   bool image_ms_array;
-   bool tessellation;
-   bool draw_parameters;
-   bool image_read_without_format;
-   bool image_write_without_format;
-   bool int64;
-   bool multiview;
-   bool variable_pointers;
-   bool storage_16bit;
-};
-
 /**
  * Constants which may be overridden by device driver during context creation
  * but are never changed after that.