Skip to content

Commit 5b1dcb8

Browse files
committed
more base files
1 parent 1c0dfaa commit 5b1dcb8

File tree

6 files changed

+116
-0
lines changed

6 files changed

+116
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/target
2+
**/*.rs.bk

Cargo.lock

Lines changed: 80 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
[package]
2+
name = "learn-opengl"
3+
version = "0.1.0"
4+
authors = ["Lokathor <[email protected]>"]
5+
edition = "2018"
6+
license = "Zlib"
7+
8+
publish = false
9+
10+
[dependencies]
11+
bytemuck = "1"
12+
beryllium = "0.2.0-alpha.1"
13+
ogl33 = { version = "0.1", features = ["debug_error_checks", "debug_trace_messages"]}

LICENSE-ZLIB.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
Copyright (c) 2019 Daniel "Lokathor" Gee.
2+
3+
This software is provided 'as-is', without any express or implied warranty. In no event will the authors be held liable for any damages arising from the use of this software.
4+
5+
Permission is granted to anyone to use this software for any purpose, including commercial applications, and to alter it and redistribute it freely, subject to the following restrictions:
6+
7+
1. The origin of this software must not be misrepresented; you must not claim that you wrote the original software. If you use this software in a product, an acknowledgment in the product documentation would be appreciated but is not required.
8+
9+
2. Altered source versions must be plainly marked as such, and must not be misrepresented as being the original software.
10+
11+
3. This notice may not be removed or altered from any source distribution.

rustfmt.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
error_on_line_overflow = false
2+
merge_imports = true
3+
reorder_imports = true
4+
use_try_shorthand = true
5+
tab_spaces = 2
6+
max_width = 80
7+
color = "Never"
8+
use_small_heuristics = "Max"

src/lib.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
2+
//

0 commit comments

Comments
 (0)