summaryrefslogtreecommitdiff
path: root/examples/gpu-printing
diff options
context:
space:
mode:
Diffstat (limited to 'examples/gpu-printing')
-rw-r--r--examples/gpu-printing/gpu-printing.h2
-rw-r--r--examples/gpu-printing/main.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/examples/gpu-printing/gpu-printing.h b/examples/gpu-printing/gpu-printing.h
index 81c2e615f..64eaf770a 100644
--- a/examples/gpu-printing/gpu-printing.h
+++ b/examples/gpu-printing/gpu-printing.h
@@ -9,7 +9,7 @@
// strings that were specified in Slang shader code, and
// for that it will use the Slang reflection API.
//
-#include <slang.h>
+#include "slang.h"
// We also need a way to store the data for strings that
// were used in shader code, and we will go ahead and
diff --git a/examples/gpu-printing/main.cpp b/examples/gpu-printing/main.cpp
index 39b97a889..aa5beea95 100644
--- a/examples/gpu-printing/main.cpp
+++ b/examples/gpu-printing/main.cpp
@@ -1,9 +1,9 @@
// main.cpp
#include <string>
-#include <slang.h>
+#include "slang.h"
-#include <slang-com-ptr.h>
+#include "slang-com-ptr.h"
using Slang::ComPtr;
#include "gpu-printing.h"