Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ValveSoftware/vkd3d.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJózef Kucia <jkucia@codeweavers.com>2019-08-01 19:10:58 +0300
committerAlexandre Julliard <julliard@winehq.org>2019-08-02 17:57:30 +0300
commit332b250e82a16bd1f5d6eec7659a834604452ec2 (patch)
tree37c7a66c4113be2282ad314c77ac9a0552689c62
parent55f64cef2fa4213302027852fe575a38b75255da (diff)
include: Move debug interfaces to vkd3d_d3d12sdklayers.h.
Signed-off-by: Józef Kucia <jkucia@codeweavers.com> Signed-off-by: Henri Verbeet <hverbeet@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
-rw-r--r--Makefile.am2
-rw-r--r--include/.gitignore1
-rw-r--r--include/vkd3d_d3d12.idl24
-rw-r--r--include/vkd3d_d3d12sdklayers.idl43
-rw-r--r--tests/d3d12_crosstest.h1
5 files changed, 47 insertions, 24 deletions
diff --git a/Makefile.am b/Makefile.am
index fe3a3639..2b0e8f3f 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -5,6 +5,7 @@ AM_LDFLAGS = -no-undefined
widl_headers = \
include/vkd3d_d3d12.h \
+ include/vkd3d_d3d12sdklayers.h \
include/vkd3d_d3dcommon.h \
include/vkd3d_dxgi.h \
include/vkd3d_dxgi1_2.h \
@@ -17,6 +18,7 @@ widl_headers = \
vkd3d_public_headers = \
include/vkd3d.h \
include/vkd3d_d3d12.h \
+ include/vkd3d_d3d12sdklayers.h \
include/vkd3d_d3dcommon.h \
include/vkd3d_dxgibase.h \
include/vkd3d_dxgiformat.h \
diff --git a/include/.gitignore b/include/.gitignore
index d21fd994..7ed2b780 100644
--- a/include/.gitignore
+++ b/include/.gitignore
@@ -2,6 +2,7 @@ config.h
config.h.in
stamp-h1
vkd3d_d3d12.h
+vkd3d_d3d12sdklayers.h
vkd3d_d3dcommon.h
vkd3d_dxgi.h
vkd3d_dxgi1_2.h
diff --git a/include/vkd3d_d3d12.idl b/include/vkd3d_d3d12.idl
index 067db8da..8489f565 100644
--- a/include/vkd3d_d3d12.idl
+++ b/include/vkd3d_d3d12.idl
@@ -2319,30 +2319,6 @@ interface ID3D12Device1 : ID3D12Device
}
[
- uuid(344488b7-6846-474b-b989-f027448245e0),
- object,
- local,
- pointer_default(unique)
-]
-interface ID3D12Debug : IUnknown
-{
- void EnableDebugLayer();
-}
-
-[
- uuid(affaa4ca-63fe-4d8e-b8ad-159000af4304),
- object,
- local,
- pointer_default(unique)
-]
-interface ID3D12Debug1 : IUnknown
-{
- void EnableDebugLayer();
- void SetEnableGPUBasedValidation(BOOL enable);
- void SetEnableSynchronizedCommandQueueValidation(BOOL enable);
-}
-
-[
uuid(34ab647b-3cc8-46ac-841b-c0965645c046),
object,
local,
diff --git a/include/vkd3d_d3d12sdklayers.idl b/include/vkd3d_d3d12sdklayers.idl
new file mode 100644
index 00000000..76634628
--- /dev/null
+++ b/include/vkd3d_d3d12sdklayers.idl
@@ -0,0 +1,43 @@
+/*
+ * Copyright 2016-2019 Józef Kucia for CodeWeavers
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+import "vkd3d_d3d12.idl";
+
+[
+ uuid(344488b7-6846-474b-b989-f027448245e0),
+ object,
+ local,
+ pointer_default(unique)
+]
+interface ID3D12Debug : IUnknown
+{
+ void EnableDebugLayer();
+}
+
+[
+ uuid(affaa4ca-63fe-4d8e-b8ad-159000af4304),
+ object,
+ local,
+ pointer_default(unique)
+]
+interface ID3D12Debug1 : IUnknown
+{
+ void EnableDebugLayer();
+ void SetEnableGPUBasedValidation(BOOL enable);
+ void SetEnableSynchronizedCommandQueueValidation(BOOL enable);
+}
diff --git a/tests/d3d12_crosstest.h b/tests/d3d12_crosstest.h
index 1f7e7648..7b594712 100644
--- a/tests/d3d12_crosstest.h
+++ b/tests/d3d12_crosstest.h
@@ -45,6 +45,7 @@ typedef int HRESULT;
#include "vkd3d_windows.h"
#define WIDL_C_INLINE_WRAPPERS
#include "vkd3d_d3d12.h"
+#include "vkd3d_d3d12sdklayers.h"
#include <inttypes.h>
#include <limits.h>