aboutsummaryrefslogtreecommitdiff
path: root/stockton-render/src/draw/mod.rs
diff options
context:
space:
mode:
authortcmal <me@aria.rip>2024-08-25 17:44:19 +0100
committertcmal <me@aria.rip>2024-08-25 17:44:19 +0100
commit34ca085717195302c8048c46f64ff771476ee4a2 (patch)
treeae2fb5af1fb8fdf3a36231813f5100b84a89d7e7 /stockton-render/src/draw/mod.rs
parent21a0be717e4c52bbc30ccb11855a9638946fc7b4 (diff)
feat(render): added vulkan initialisation, etc.
Diffstat (limited to 'stockton-render/src/draw/mod.rs')
-rw-r--r--stockton-render/src/draw/mod.rs21
1 files changed, 21 insertions, 0 deletions
diff --git a/stockton-render/src/draw/mod.rs b/stockton-render/src/draw/mod.rs
new file mode 100644
index 0000000..0774501
--- /dev/null
+++ b/stockton-render/src/draw/mod.rs
@@ -0,0 +1,21 @@
+// Copyright (C) Oscar Shrimpton 2019
+
+// This program is free software: you can redistribute it and/or modify it
+// under the terms of the GNU General Public License as published by the Free
+// Software Foundation, either version 3 of the License, or (at your option)
+// any later version.
+
+// This program is distributed in the hope that it will be useful, but WITHOUT
+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+// more details.
+
+// You should have received a copy of the GNU General Public License along
+// with this program. If not, see <http://www.gnu.org/licenses/>.
+
+//! Given 3D points and some camera information, renders to the screen.
+
+mod context;
+mod frame;
+
+pub use context::RenderingContext; \ No newline at end of file