polystrip 0.5.0

A 2D accelerated graphics rendering library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
GLSLC := glslc

shaders: src/spirv/coloured.frag.spv src/spirv/coloured.vert.spv src/spirv/textured.frag.spv src/spirv/textured.vert.spv

src/spirv/coloured.frag.spv: src/spirv/coloured.frag
	$(GLSLC) -o src/spirv/coloured.frag.spv src/spirv/coloured.frag

src/spirv/coloured.vert.spv: src/spirv/coloured.vert
	$(GLSLC) -o src/spirv/coloured.vert.spv src/spirv/coloured.vert

src/spirv/textured.frag.spv: src/spirv/textured.frag
	$(GLSLC) -o src/spirv/textured.frag.spv src/spirv/textured.frag

src/spirv/textured.vert.spv: src/spirv/textured.vert
	$(GLSLC) -o src/spirv/textured.vert.spv src/spirv/textured.vert