diff --git a/base/tests/cube/sources/main.ts b/base/tests/cube/sources/main.ts index cc6657f7..d3de8a01 100644 --- a/base/tests/cube/sources/main.ts +++ b/base/tests/cube/sources/main.ts @@ -11,7 +11,7 @@ function main() { mode: window_mode_t.WINDOWED, frequency: 60, vsync: true, - use_depth: false + use_depth: true }; sys_start(ops); sys_init(); @@ -77,8 +77,8 @@ function ready() { contexts: [ { name: "mesh", - vertex_shader: "_mesh.vert", - fragment_shader: "_mesh.frag", + vertex_shader: "mesh.vert", + fragment_shader: "mesh.frag", compare_mode: "less", cull_mode: "clockwise", depth_write: true, diff --git a/base/tests/fall/sources/main.ts b/base/tests/fall/sources/main.ts index a5efafa8..c676c115 100644 --- a/base/tests/fall/sources/main.ts +++ b/base/tests/fall/sources/main.ts @@ -89,8 +89,8 @@ function ready() { contexts: [ { name: "mesh", - vertex_shader: "_mesh.vert", - fragment_shader: "_mesh.frag", + vertex_shader: "mesh.vert", + fragment_shader: "mesh.frag", compare_mode: "less", cull_mode: "clockwise", depth_write: true,