X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_water.h;h=84558a20f392c591449057d404d77f432b176849;hb=01e2535f8daaab0e3d46dcc61a08a9268babd47c;hp=c16e2c556f60caa9864826f46cc6396778998b7c;hpb=409edea2cf6271956137918e4e0b4f1c2addf620;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_water.h b/world_water.h index c16e2c5..84558a2 100644 --- a/world_water.h +++ b/world_water.h @@ -38,17 +38,24 @@ VG_STATIC void world_link_lighting_ub( world_instance *world, GLuint shader ); VG_STATIC void world_bind_position_texture( world_instance *world, GLuint shader, GLuint location, int slot ); +VG_STATIC void world_bind_light_array( world_instance *world, + GLuint shader, GLuint location, + int slot ); +VG_STATIC void world_bind_light_index( world_instance *world, + GLuint shader, GLuint location, + int slot ); /* * Does not write motion vectors */ -VG_STATIC void render_water_texture( world_instance *world, camera *cam ) +VG_STATIC void render_water_texture( world_instance *world, camera *cam, + int layer_depth ) { if( !world->water.enabled || (vg.quality_profile == k_quality_profile_low) ) return; /* Draw reflection buffa */ - render_fb_bind( gpipeline.fb_water_reflection ); + render_fb_bind( gpipeline.fb_water_reflection, 1 ); glClear( GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT ); /* @@ -84,15 +91,17 @@ VG_STATIC void render_water_texture( world_instance *world, camera *cam ) /* * Draw world */ + glEnable( GL_DEPTH_TEST ); + glDisable( GL_BLEND ); glCullFace( GL_FRONT ); - render_world( world, &water_cam ); + render_world( world, &water_cam, layer_depth ); glCullFace( GL_BACK ); /* * Create beneath view matrix */ camera beneath_cam; - render_fb_bind( gpipeline.fb_water_beneath ); + render_fb_bind( gpipeline.fb_water_beneath, 1 ); glClearColor( 1.0f, 0.0f, 0.0f, 0.0f ); glClear( GL_COLOR_BUFFER_BIT|GL_DEPTH_BUFFER_BIT ); @@ -109,8 +118,10 @@ VG_STATIC void render_water_texture( world_instance *world, camera *cam ) m4x4_clip_projection( beneath_cam.mtx.p, clippb ); camera_finalize( &beneath_cam ); + glEnable( GL_DEPTH_TEST ); + glDisable( GL_BLEND ); render_world_depth( world, &beneath_cam ); - glViewport( 0, 0, vg.window_x, vg.window_y ); + //glViewport( 0,0, g_render_x, g_render_y ); } VG_STATIC void render_water_surface( world_instance *world, camera *cam ) @@ -118,8 +129,7 @@ VG_STATIC void render_water_surface( world_instance *world, camera *cam ) if( !world->water.enabled ) return; - if( vg.quality_profile == k_quality_profile_high ) - { + if( vg.quality_profile == k_quality_profile_high ){ /* Draw surface */ shader_scene_water_use(); @@ -135,6 +145,10 @@ VG_STATIC void render_water_surface( world_instance *world, camera *cam ) world_link_lighting_ub( world, _shader_scene_water.id ); world_bind_position_texture( world, _shader_scene_water.id, _uniform_scene_water_g_world_depth, 2 ); + world_bind_light_array( world, _shader_scene_water.id, + _uniform_scene_water_uLightsArray, 4 ); + world_bind_light_index( world, _shader_scene_water.id, + _uniform_scene_water_uLightsIndex, 5 ); render_fb_bind_texture( gpipeline.fb_water_beneath, 0, 3 ); shader_scene_water_uTexBack( 3 ); @@ -155,12 +169,10 @@ VG_STATIC void render_water_surface( world_instance *world, camera *cam ) mesh_bind( &world->mesh_no_collide ); - for( int i=0; imaterial_count; i++ ) - { - struct world_material *mat = &world->materials[i]; + for( int i=0; isurface_count; i++ ){ + struct world_surface *mat = &world->surfaces[i]; - if( mat->info.shader == k_shader_water ) - { + if( mat->info.shader == k_shader_water ){ shader_scene_water_uShoreColour( mat->info.colour ); shader_scene_water_uOceanColour( mat->info.colour1 ); @@ -170,8 +182,7 @@ VG_STATIC void render_water_surface( world_instance *world, camera *cam ) glDisable(GL_BLEND); } - else if( vg.quality_profile == k_quality_profile_low ) - { + else if( vg.quality_profile == k_quality_profile_low ){ shader_scene_water_fast_use(); vg_tex2d_bind( &tex_water_surf, 1 ); @@ -182,6 +193,8 @@ VG_STATIC void render_water_surface( world_instance *world, camera *cam ) world_link_lighting_ub( world, _shader_scene_water_fast.id ); world_bind_position_texture( world, _shader_scene_water_fast.id, _uniform_scene_water_fast_g_world_depth, 2 ); + world_bind_light_array( world, _shader_scene_water_fast.id, + _uniform_scene_water_fast_uLightsArray, 4 ); m4x3f full; m4x3_identity( full ); @@ -195,12 +208,10 @@ VG_STATIC void render_water_surface( world_instance *world, camera *cam ) mesh_bind( &world->mesh_no_collide ); - for( int i=0; imaterial_count; i++ ) - { - struct world_material *mat = &world->materials[i]; + for( int i=0; isurface_count; i++ ){ + struct world_surface *mat = &world->surfaces[i]; - if( mat->info.shader == k_shader_water ) - { + if( mat->info.shader == k_shader_water ){ shader_scene_water_fast_uShoreColour( mat->info.colour ); shader_scene_water_fast_uOceanColour( mat->info.colour1 );