Skip to content

Commit

Permalink
Move spv files out of lfs
Browse files Browse the repository at this point in the history
  • Loading branch information
Frizi committed May 22, 2019
1 parent d83f3e4 commit 0bc1c9d
Show file tree
Hide file tree
Showing 19 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
*.yml text
COPYING text
LICENSE-* text
*.spv binary
# LFS
examples/assets/large/**/*.obj filter=lfs diff=lfs merge=lfs -text
examples/assets/large/**/*.png filter=lfs diff=lfs merge=lfs -text
Expand All @@ -16,5 +17,3 @@ examples/assets/large/**/*.dds filter=lfs diff=lfs merge=lfs -text
examples/assets/large/**/*.glb filter=lfs diff=lfs merge=lfs -text
examples/assets/large/**/*.bin filter=lfs diff=lfs merge=lfs -text
examples/assets/large/**/*.jpg filter=lfs diff=lfs merge=lfs -text
amethyst_rendy/compiled/**/*.spv filter=lfs diff=lfs merge=lfs -text
amethyst_ui/compiled/**/*.spv filter=lfs diff=lfs merge=lfs -text
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,22 +19,22 @@ all: $(COMP_SHADERS) $(COMP_DISASMS) $(COMP_SHADERS_UI) $(COMP_DISASMS_UI)

amethyst_rendy/compiled/%.spv: amethyst_rendy/shaders/%
mkdir -p $(dir $@)
$(GLSLC) -MD -c -g -O -o $@ $<
$(GLSLC) -MD -c -O -o $@ $<

amethyst_rendy/compiled/%.spvasm: amethyst_rendy/shaders/%
mkdir -p $(dir $@)
$(GLSLC) -MD -S -g -O -o $@ $<

amethyst_ui/compiled/%.spv: amethyst_ui/shaders/%
mkdir -p $(dir $@)
$(GLSLC) -MD -c -g -O -o $@ $<
$(GLSLC) -MD -c -O -o $@ $<

amethyst_ui/compiled/%.spvasm: amethyst_ui/shaders/%
mkdir -p $(dir $@)
$(GLSLC) -MD -S -g -O -o $@ $<

clean:
rm amethyst_rendy/compiled/**/*.spv amethyst_rendy/compiled/**/*.spvasm amethyst_rendy/compiled/**/*.d
rm amethyst_ui/compiled/**/*.spv amethyst_ui/compiled/**/*.spvasm amethyst_ui/compiled/**/*.d
rm amethyst_ui/compiled/*.spv amethyst_ui/compiled/*.spvasm amethyst_ui/compiled/*.d

.PHONY: all clean
Binary file modified amethyst_rendy/compiled/fragment/debug_lines.frag.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/fragment/flat.frag.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/fragment/pbr.frag.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/fragment/shaded.frag.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/fragment/skybox.frag.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/fragment/sprite.frag.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/vertex/debug_lines.vert.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/vertex/pos_norm_tang_tex.vert.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/vertex/pos_norm_tang_tex_skin.vert.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/vertex/pos_norm_tex.vert.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/vertex/pos_norm_tex_skin.vert.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/vertex/pos_tex.vert.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/vertex/pos_tex_skin.vert.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/vertex/skybox.vert.spv
Binary file not shown.
Binary file modified amethyst_rendy/compiled/vertex/sprite.vert.spv
Binary file not shown.
Binary file modified amethyst_ui/compiled/ui.frag.spv
Binary file not shown.
Binary file modified amethyst_ui/compiled/ui.vert.spv
Binary file not shown.

0 comments on commit 0bc1c9d

Please sign in to comment.