X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_render.h;h=9693e814dc9c0c07347fd03883f07905265bdc09;hb=4f96bd0040e35ecb21d353ee2b895129682d22c1;hp=aa008c5376936f8e9c86fbce900a3f41a921555f;hpb=d00b1df8f80e4714dc2f9aa2189d242bb4d09a2f;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_render.h b/world_render.h index aa008c5..9693e81 100644 --- a/world_render.h +++ b/world_render.h @@ -183,7 +183,7 @@ static void render_sky(m4x3f camera) shader_sky_uMdl(identity_matrix); shader_sky_uPv(full); shader_sky_uTexGarbage(0); - shader_sky_uTime( vg_time ); + shader_sky_uTime( world.sky_time ); vg_tex2d_bind( &tex_terrain_noise, 0 ); @@ -202,9 +202,9 @@ static void render_world_gates( m4x4f projection, v3f playerco, m4x3f camera ) float closest = INFINITY; int id = 0; - for( int i=0; igate.co[0], camera[3] ); if( dist < closest ) @@ -214,9 +214,9 @@ static void render_world_gates( m4x4f projection, v3f playerco, m4x3f camera ) } } - render_gate( &world.routes.gates[id].gate, playerco, camera ); + render_gate( &world_routes.gates[id].gate, playerco, camera ); v3_lerp( world.render_gate_pos, - world.routes.gates[id].gate.co[0], + world_routes.gates[id].gate.co[0], 1.0f, world.render_gate_pos ); } @@ -232,9 +232,9 @@ static void render_world( m4x4f projection, m4x3f camera ) int closest = 0; float min_dist = INFINITY; - for( int i=0; i