Skip to content

Commit

Permalink
skybox
Browse files Browse the repository at this point in the history
  • Loading branch information
Lonsdaleiter committed May 13, 2020
1 parent 1efd594 commit 4f4a6fe
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ name = "iron-oxide"
version = "0.1.0"
authors = ["Lonsdaleiter <lonsdaleiteproductions@gmail.com>"]
edition = "2018"
description = "Unsafe Rusty Metal."
repository = "https://github.com/Lonsdaleiter/iron-oxide"
keywords = ["metal", "graphics", "bindings", "objective c", "gamedev", "macos", "ios"]
categories = ["graphics", "os::macos-apis", "game-development", "rendering::graphics-api"]
include = ["src/*", "Cargo.toml", "README.md"]
readme = "README.md"
license = "MIT"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -18,3 +24,4 @@ raw-window-handle = "0.3.3"
winit = "0.22.1"
colog = "1.0.0"
png = "0.16.3"
cgmath = "0.17.0"
8 changes: 4 additions & 4 deletions examples/gol/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -259,12 +259,12 @@ fn main() {
encoder.set_texture(&compute_state.cell_state, 0);
encoder.set_texture(&compute_state.cell_state, 1);
encoder.dispatch_threadgroups(MTLSize {
width: 5,
height: 5,
depth: 1,
}, MTLSize {
width: 10,
height: 10,
depth: 1,
}, MTLSize {
width: 5,
height: 5,
depth: 1
});
encoder.end_encoding();
Expand Down
3 changes: 3 additions & 0 deletions examples/skybox/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
//
}

0 comments on commit 4f4a6fe

Please sign in to comment.