commit: 7ecf304e304b1776c4660f3476e4c10b2a58d711 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com> AuthorDate: Sun Jan 6 10:40:12 2019 +0000 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org> CommitDate: Sun Jan 6 15:38:48 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ecf304e
media-libs/vulkan-layers: remove unused patch Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com> Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org> ...1.77.0-layers-Rework-include-dependencies.patch | 68 ---------------------- 1 file changed, 68 deletions(-) diff --git a/media-libs/vulkan-layers/files/vulkan-layers-1.1.77.0-layers-Rework-include-dependencies.patch b/media-libs/vulkan-layers/files/vulkan-layers-1.1.77.0-layers-Rework-include-dependencies.patch deleted file mode 100644 index d0b48a749c2..00000000000 --- a/media-libs/vulkan-layers/files/vulkan-layers-1.1.77.0-layers-Rework-include-dependencies.patch +++ /dev/null @@ -1,68 +0,0 @@ -From 4c0da77c705464a259b38944fb53cf747e4c0554 Mon Sep 17 00:00:00 2001 -From: Lenny Komow <le...@lunarg.com> -Date: Tue, 3 Jul 2018 10:17:21 -0600 -Subject: [PATCH] layers: Rework include dependencies - -This change removes the assumption that vk_layer.h will include -vk_layer_dispatch_table.h, since it will be removed from vk_layer.h -in the near future. - -Backported-by: Nick Sarnie <sar...@gentoo.org> - -Change-Id: I082ccc52c3cb8257bf57342404d52dd737009b4b ---- - layers/parameter_validation_utils.cpp | 1 + - layers/vk_layer_logging.h | 1 + - layers/vk_layer_table.h | 1 + - scripts/dispatch_table_helper_generator.py | 1 + - 4 files changed, 4 insertions(+) - -diff --git a/layers/parameter_validation_utils.cpp b/layers/parameter_validation_utils.cpp -index 17f95bb8..c65a4970 100644 ---- a/layers/parameter_validation_utils.cpp -+++ b/layers/parameter_validation_utils.cpp -@@ -46,6 +46,7 @@ - #include "vk_layer_logging.h" - #include "vk_layer_extension_utils.h" - #include "vk_layer_utils.h" -+#include "vk_layer_dispatch_table.h" - - #include "parameter_name.h" - #include "parameter_validation.h" -diff --git a/layers/vk_layer_logging.h b/layers/vk_layer_logging.h -index f111cc5d..f67a3f55 100644 ---- a/layers/vk_layer_logging.h -+++ b/layers/vk_layer_logging.h -@@ -31,6 +31,7 @@ - #include "vulkan/vk_layer.h" - #include "vk_object_types.h" - #include "vk_validation_error_messages.h" -+#include "vk_layer_dispatch_table.h" - #include <signal.h> - #include <cinttypes> - #include <stdarg.h> -diff --git a/layers/vk_layer_table.h b/layers/vk_layer_table.h -index 45b8f6e1..23990a12 100644 ---- a/layers/vk_layer_table.h -+++ b/layers/vk_layer_table.h -@@ -19,6 +19,7 @@ - - #pragma once - -+#include "vk_layer_dispatch_table.h" - #include "vulkan/vk_layer.h" - #include "vulkan/vulkan.h" - #include <unordered_map> -diff --git a/scripts/dispatch_table_helper_generator.py b/scripts/dispatch_table_helper_generator.py -index fba25e55..1e2412c0 100644 ---- a/scripts/dispatch_table_helper_generator.py -+++ b/scripts/dispatch_table_helper_generator.py -@@ -113,6 +113,7 @@ class DispatchTableHelperOutputGenerator(OutputGenerator): - preamble += '#include <vulkan/vulkan.h>\n' - preamble += '#include <vulkan/vk_layer.h>\n' - preamble += '#include <string.h>\n' -+ preamble += '#include "vk_layer_dispatch_table.h"\n' - - write(copyright, file=self.outFile) - write(preamble, file=self.outFile) ---