aboutsummaryrefslogtreecommitdiff
path: root/src/render_opencl.c
diff options
context:
space:
mode:
authorLeonard Kugis <leonardkugis@gmail.com>2018-01-26 01:12:49 +0100
committerLeonard Kugis <leonardkugis@gmail.com>2018-01-26 01:12:49 +0100
commit1c3ea27064257d8cf7b9f36b0388b8cf2e94ab08 (patch)
tree9b2d9a0dbb2940158b2fb734325cfc360efac6f4 /src/render_opencl.c
parente6c241add375353c1c80b0e3915a6505dbd5db9a (diff)
Skeleton for OpenCL rendering, cleaned up alot, WIP and crashing
Diffstat (limited to 'src/render_opencl.c')
-rw-r--r--src/render_opencl.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/src/render_opencl.c b/src/render_opencl.c
new file mode 100644
index 0000000..913c975
--- /dev/null
+++ b/src/render_opencl.c
@@ -0,0 +1,26 @@
+/*
+ * render_opencl.c
+ *
+ * Created on: 26.01.2018
+ * Author: Superleo1810
+ */
+
+#include "render_opencl.h"
+
+// TODO: implement opencl
+
+void init_opencl(OpenCLConfig *config)
+{
+ config_opencl = config;
+ printf("OpenCL rendering not implemented yet\n");
+}
+
+void render_opencl(void)
+{
+
+}
+
+void idle_opencl(void)
+{
+
+}