summaryrefslogtreecommitdiff
path: root/tools/gfx/cuda/render-cuda.h
diff options
context:
space:
mode:
authorYong He <yonghe@outlook.com>2020-12-11 09:42:23 -0800
committerGitHub <noreply@github.com>2020-12-11 09:42:23 -0800
commit856d7d3705cedabcc2e9389a3f0ac730b0e33476 (patch)
tree3b04a7c67f9e4b4b4cc3bb4a0906815c62f7d7ee /tools/gfx/cuda/render-cuda.h
parent992778e25c444932921ce92fe7934893b2aca35f (diff)
Implements CUDA renderer in gfx. (#1637)
* Implements CUDA renderer in gfx. * Revert unnecessary change. * Revert unnecessary changes. Co-authored-by: Tim Foley <tfoleyNV@users.noreply.github.com>
Diffstat (limited to 'tools/gfx/cuda/render-cuda.h')
-rw-r--r--tools/gfx/cuda/render-cuda.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/tools/gfx/cuda/render-cuda.h b/tools/gfx/cuda/render-cuda.h
new file mode 100644
index 000000000..cf63113c8
--- /dev/null
+++ b/tools/gfx/cuda/render-cuda.h
@@ -0,0 +1,8 @@
+#pragma once
+
+namespace gfx
+{
+class Renderer;
+
+Renderer* createCUDARenderer();
+}