Move shaders into the renderer dir

This commit is contained in:
Mitchell Hashimoto
2022-11-15 13:10:30 -08:00
parent 2a88ebd94e
commit 18de7cd2ef
5 changed files with 5 additions and 7 deletions

View File

@@ -168,8 +168,8 @@ pub fn init(alloc: Allocator, options: renderer.Options) !OpenGL {
// Create our shader
const program = try gl.Program.createVF(
@embedFile("../shaders/cell.v.glsl"),
@embedFile("../shaders/cell.f.glsl"),
@embedFile("shaders/cell.v.glsl"),
@embedFile("shaders/cell.f.glsl"),
);
// Set our cell dimensions