From 5f7dc28a6d139487bab4ce61a60f12b3c53b6265 Mon Sep 17 00:00:00 2001 From: Yong He Date: Fri, 19 Feb 2021 10:11:01 -0800 Subject: Make gfx library visible to external user. (#1719) * Make gfx library visible to external user. * Fixup --- tools/render-test/options.h | 2 +- tools/render-test/render-test-main.cpp | 2 +- tools/render-test/shader-input-layout.cpp | 2 +- tools/render-test/shader-input-layout.h | 2 +- tools/render-test/shader-renderer-util.h | 2 +- tools/render-test/slang-support.h | 2 +- tools/render-test/surface.h | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) (limited to 'tools/render-test') diff --git a/tools/render-test/options.h b/tools/render-test/options.h index 646cf3a76..9d39e35b3 100644 --- a/tools/render-test/options.h +++ b/tools/render-test/options.h @@ -12,7 +12,7 @@ #include "../../source/core/slang-process-util.h" -#include "render.h" +#include "../../slang-gfx.h" namespace renderer_test { diff --git a/tools/render-test/render-test-main.cpp b/tools/render-test/render-test-main.cpp index 8f62d8a50..7bf7dd369 100644 --- a/tools/render-test/render-test-main.cpp +++ b/tools/render-test/render-test-main.cpp @@ -3,7 +3,7 @@ #define _CRT_SECURE_NO_WARNINGS 1 #include "options.h" -#include "render.h" +#include "slang-gfx.h" #include "tools/gfx-util/shader-cursor.h" #include "slang-support.h" #include "surface.h" diff --git a/tools/render-test/shader-input-layout.cpp b/tools/render-test/shader-input-layout.cpp index 5f43b254d..2f7162f35 100644 --- a/tools/render-test/shader-input-layout.cpp +++ b/tools/render-test/shader-input-layout.cpp @@ -5,7 +5,7 @@ #include "core/slang-token-reader.h" #include "core/slang-type-text-util.h" -#include "render.h" +#include "slang-gfx.h" namespace renderer_test { diff --git a/tools/render-test/shader-input-layout.h b/tools/render-test/shader-input-layout.h index 51463eca6..2c8dbe821 100644 --- a/tools/render-test/shader-input-layout.h +++ b/tools/render-test/shader-input-layout.h @@ -9,7 +9,7 @@ #include "bind-location.h" -#include "render.h" +#include "slang-gfx.h" namespace renderer_test { diff --git a/tools/render-test/shader-renderer-util.h b/tools/render-test/shader-renderer-util.h index 045f501c3..815bf2248 100644 --- a/tools/render-test/shader-renderer-util.h +++ b/tools/render-test/shader-renderer-util.h @@ -1,7 +1,7 @@ // shader-renderer-util.h #pragma once -#include "render.h" +#include "slang-gfx.h" #include "shader-input-layout.h" namespace renderer_test { diff --git a/tools/render-test/slang-support.h b/tools/render-test/slang-support.h index c08d18567..6fa850874 100644 --- a/tools/render-test/slang-support.h +++ b/tools/render-test/slang-support.h @@ -1,7 +1,7 @@ // slang-support.h #pragma once -#include "render.h" +#include "slang-gfx.h" #include diff --git a/tools/render-test/surface.h b/tools/render-test/surface.h index 3e0f6f0aa..f6e888745 100644 --- a/tools/render-test/surface.h +++ b/tools/render-test/surface.h @@ -1,7 +1,7 @@ // surface.h #pragma once -#include "render.h" +#include "slang-gfx.h" namespace gfx { -- cgit v1.2.3