Initial commit

This commit is contained in:
chyyran 2022-10-17 23:52:16 -04:00
commit c17796f309
4 changed files with 31 additions and 0 deletions

5
README.md Normal file
View file

@ -0,0 +1,5 @@
# librashader
Pure Rust implementation of the RetroArch shader pipeline as a dynamic library.
Heavily WIP

4
src/Cargo.toml Normal file
View file

@ -0,0 +1,4 @@
[workspace]
members = [
"librashader-presets"
]

View file

@ -0,0 +1,8 @@
[package]
name = "librashader-presets"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

View file

@ -0,0 +1,14 @@
pub fn add(left: usize, right: usize) -> usize {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}