moves compiled shaders, first version with scene info on gpu
This commit is contained in:
parent
57e862832a
commit
694d93c0f3
20 changed files with 623 additions and 113 deletions
shaders
|
@ -1,11 +1,11 @@
|
|||
#!/bin/sh
|
||||
glslc shaders/cube.vert -o shaders/vert_cube.spv
|
||||
glslc shaders/cube.frag -o shaders/frag_cube.spv
|
||||
glslc shaders/cube.geom -o shaders/geo_cube.spv
|
||||
glslc shaders/cube.vert -o shaders/compiled/vert_cube.spv
|
||||
glslc shaders/cube.frag -o shaders/compiled/frag_cube.spv
|
||||
glslc shaders/cube.geom -o shaders/compiled/geo_cube.spv
|
||||
|
||||
glslc shaders/cuboid.vert -o shaders/vert_cuboid.spv
|
||||
glslc shaders/cuboid.frag -o shaders/frag_cuboid.spv
|
||||
glslc shaders/cuboid.geom -o shaders/geo_cuboid.spv
|
||||
glslc shaders/cuboid.vert -o shaders/compiled/vert_cuboid.spv
|
||||
glslc shaders/cuboid.frag -o shaders/compiled/frag_cuboid.spv
|
||||
glslc shaders/cuboid.geom -o shaders/compiled/geo_cuboid.spv
|
||||
|
||||
glslc shaders/rt_quad.vert -o shaders/vert_rt_quad.spv
|
||||
glslc shaders/rt_quad.frag -o shaders/frag_rt_quad.spv
|
||||
glslc shaders/rt_quad.vert -o shaders/compiled/vert_rt_quad.spv
|
||||
glslc shaders/rt_quad.frag -o shaders/compiled/frag_rt_quad.spv
|
Loading…
Add table
Add a link
Reference in a new issue