Bump engine submodule.

This commit is contained in:
Roz K 2022-12-31 09:39:49 +01:00
parent 2f3508ed3a
commit f05a4b64a2
Signed by: roz
GPG Key ID: 51FBF4E483E1C822
2 changed files with 1 additions and 5 deletions

2
engine

@ -1 +1 @@
Subproject commit 1b9ce5410083bd9346aca642de6c8180116987e7
Subproject commit 43d62948b7d58deacc4f2090388a6c72de1286bc

View File

@ -192,11 +192,9 @@ def main():
select_texture(0, tiles_texture, tiles_sampler)
select_texture(1, heightmap, terrain_heightmap_sampler)
select_texture(2, normalmap, terrain_normalmap_sampler)
select_vertices(tiles_vertices)
draw_begin = time.thread_time()
terrain_batch.draw()
draw_end = time.thread_time()
unselect_vertices(tiles_vertices)
unselect_texture(0, tiles_texture)
unselect_texture(1, heightmap)
unselect_texture(2, normalmap)
@ -215,9 +213,7 @@ def main():
select_texture(0, tests_texture, tests_sampler)
select_texture(1, heightmap, tests_heightmap_sampler)
select_texture(2, normalmap, tests_normalmap_sampler)
select_vertices(tests_vertices)
tests_batch.draw()
unselect_vertices(tests_vertices)
unselect_texture(0, tests_texture)
unselect_texture(1, heightmap)
unselect_texture(2, normalmap)