summaryrefslogtreecommitdiffstats
path: root/examples/shader-toy/main.cpp
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2021-03-22 16:33:51 -0700
committerGitHub <noreply@github.com>2021-03-22 16:33:51 -0700
commitd0f7b7f0ed1d0d1388ce944cd1ad906bbd9afb35 (patch)
tree2c4ea89bcd2711a5f1e94d02cbab2a838de5888c /examples/shader-toy/main.cpp
parent0f9b3a95a6cc087bc1e34d4becff04fa6160c582 (diff)
`gfx` D3D12 shader objects rewrite. (#1763)
Diffstat (limited to 'examples/shader-toy/main.cpp')
-rw-r--r--examples/shader-toy/main.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/shader-toy/main.cpp b/examples/shader-toy/main.cpp
index 8e377b42f..c4424b294 100644
--- a/examples/shader-toy/main.cpp
+++ b/examples/shader-toy/main.cpp
@@ -315,7 +315,6 @@ Result initialize()
gWindow->events.sizeChanged = Slang::Action<>(this, &ShaderToyApp::windowSizeChanged);
IDevice::Desc deviceDesc;
- deviceDesc.deviceType = DeviceType::Vulkan;
Result res = gfxCreateDevice(&deviceDesc, gDevice.writeRef());
if(SLANG_FAILED(res)) return res;