dep: remove local bml
This commit is contained in:
parent
fc092d5e5b
commit
b00f1f92f4
3
.gitmodules
vendored
3
.gitmodules
vendored
|
@ -10,6 +10,3 @@
|
||||||
[submodule "test/quark-shaders"]
|
[submodule "test/quark-shaders"]
|
||||||
path = test/quark-shaders
|
path = test/quark-shaders
|
||||||
url = https://github.com/hizzlekizzle/quark-shaders
|
url = https://github.com/hizzlekizzle/quark-shaders
|
||||||
[submodule "bml"]
|
|
||||||
path = bml
|
|
||||||
url = https://github.com/chyyran/bml
|
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
<component name="VcsDirectoryMappings">
|
<component name="VcsDirectoryMappings">
|
||||||
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
<mapping directory="$PROJECT_DIR$/.." vcs="Git" />
|
||||||
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
<mapping directory="$PROJECT_DIR$" vcs="Git" />
|
||||||
|
<mapping directory="$PROJECT_DIR$/bml" vcs="Git" />
|
||||||
|
<mapping directory="$PROJECT_DIR$/test/quark-shaders" vcs="Git" />
|
||||||
<mapping directory="$PROJECT_DIR$/test/shaders_slang" vcs="Git" />
|
<mapping directory="$PROJECT_DIR$/test/shaders_slang" vcs="Git" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -199,7 +199,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bml"
|
name = "bml"
|
||||||
version = "0.3.0"
|
version = "0.3.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "f47cd661ced9603345d776f1b97350aa728602fcf9396583438935e3ea606f3b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ordered-multimap",
|
"ordered-multimap",
|
||||||
"pest",
|
"pest",
|
||||||
|
|
|
@ -14,7 +14,6 @@ members = [
|
||||||
"librashader-capi",
|
"librashader-capi",
|
||||||
"librashader-quark",
|
"librashader-quark",
|
||||||
"librashader-build-script",
|
"librashader-build-script",
|
||||||
"bml"
|
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.metadata.release]
|
[workspace.metadata.release]
|
||||||
|
|
1
bml
1
bml
|
@ -1 +0,0 @@
|
||||||
Subproject commit 0c932a1fa661f542e2c6ef833c0ffefc95138fab
|
|
|
@ -6,4 +6,4 @@ edition = "2021"
|
||||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bml = { path = "../bml"}
|
bml = "0.3.1"
|
|
@ -13,13 +13,13 @@ use librashader_runtime_d3d11::options::FilterChainOptionsD3D11;
|
||||||
// "../test/Mega_Bezel_Packs/Duimon-Mega-Bezel/Presets/Advanced/Nintendo_GBA_SP/GBA_SP-[ADV]-[LCD-GRID].slangp";
|
// "../test/Mega_Bezel_Packs/Duimon-Mega-Bezel/Presets/Advanced/Nintendo_GBA_SP/GBA_SP-[ADV]-[LCD-GRID].slangp";
|
||||||
|
|
||||||
const FILTER_PATH: &str =
|
const FILTER_PATH: &str =
|
||||||
"../test/shaders_slang/bezel/Mega_Bezel/Presets/MBZ__0__SMOOTH-ADV.slangp";
|
"../test/shaders_slang/scalefx/scalefx-9x.slangp";
|
||||||
|
|
||||||
// const FILTER_PATH: &str = "../test/slang-shaders/test/history.slangp";
|
// const FILTER_PATH: &str = "../test/slang-shaders/test/history.slangp";
|
||||||
// const FILTER_PATH: &str = "../test/slang-shaders/test/feedback.slangp";
|
// const FILTER_PATH: &str = "../test/slang-shaders/test/feedback.slangp";
|
||||||
|
|
||||||
// const FILTER_PATH: &str = "../test/slang-shaders/crt/crt-royale.slangp";
|
// const FILTER_PATH: &str = "../test/slang-shaders/crt/crt-royale.slangp";
|
||||||
const IMAGE_PATH: &str = "../triangle.png";
|
const IMAGE_PATH: &str = "../test/finalfightlong.png";
|
||||||
#[test]
|
#[test]
|
||||||
fn triangle_d3d11_args() {
|
fn triangle_d3d11_args() {
|
||||||
let mut args = std::env::args();
|
let mut args = std::env::args();
|
||||||
|
|
Loading…
Reference in a new issue