demotool/bloom.cc

124 lines
3.1 KiB
C++
Raw Normal View History

2017-09-30 19:13:06 +02:00
#include "externals.hh"
#include "utilities.hh"
#include "texture.hh"
#include "rendertarget.hh"
#include "bloom.hh"
2017-10-01 11:37:04 +02:00
#include "profiling.hh"
namespace {
static const std::string Name_( "BLOOOOM!" );
}
#define PSTART() T_Profiler::Profiler.start( Name_ )
#define PEND() do { glFinish( ); T_Profiler::Profiler.end( Name_ ); } while ( 0 )
2017-09-30 19:13:06 +02:00
T_BloomPass::T_BloomPass(
__rw__ T_FilesWatcher& watcher ,
__rw__ T_Texture& input )
: input_( input ) ,
spHighpass_( GL_FRAGMENT_SHADER , watcher ) ,
2017-09-30 21:22:38 +02:00
spDownsample_( GL_FRAGMENT_SHADER , watcher ) ,
2017-09-30 19:13:06 +02:00
spBlur_( GL_FRAGMENT_SHADER , watcher ) ,
//
2017-09-30 21:30:31 +02:00
txBlur0_( input.width( ) , input.height( ) , E_TexType::RGB16F , BloomLevels ) ,
txBlur1_( input.width( ) , input.height( ) , E_TexType::RGB16F , BloomLevels ) ,
2017-09-30 19:41:45 +02:00
//
filterParams_{ 1.6 , 1.2 , .95 } ,
blurWeights_{ 0.324 , 0.232 , 0.0855 , 0.0205 } ,
2017-10-01 18:51:02 +02:00
blurSize_{ 1.3 }
2017-09-30 19:13:06 +02:00
{
txBlur0_.wrap( E_TexWrap::CLAMP_EDGE ).samplingMode( E_TexSampling::LINEAR );
txBlur1_.wrap( E_TexWrap::CLAMP_EDGE ).samplingMode( E_TexSampling::LINEAR );
2017-09-30 21:27:50 +02:00
for ( auto i = 0u ; i < BloomLevels ; i ++ ) {
2017-09-30 19:13:06 +02:00
rtBlur0_.push_back( T_RendertargetSetup( ).add( txBlur0_ , i ).create( ) );
rtBlur1_.push_back( T_RendertargetSetup( ).add( txBlur1_ , i ).create( ) );
}
spHighpass_.addFile( "bloom-highpass.glsl" );
2017-09-30 21:22:38 +02:00
spDownsample_.addFile( "downsample.glsl" );
2017-09-30 19:13:06 +02:00
spBlur_.addFile( "blur-pass.glsl" );
spHighpass_.load( );
2017-09-30 21:22:38 +02:00
spDownsample_.load( );
2017-09-30 19:13:06 +02:00
spBlur_.load( );
}
void T_BloomPass::render( )
{
2017-10-01 11:37:04 +02:00
PSTART( );
2017-09-30 19:13:06 +02:00
if ( spHighpass_.activate( ) ) {
enum {
U_TEXTURE = 0 ,
U_LOD = 1 ,
U_INPUT_SIZE = 2 ,
U_PARAMS = 3 ,
};
2017-09-30 21:22:38 +02:00
rtBlur0_[ 0 ].activate( );
2017-09-30 19:13:06 +02:00
T_TextureBinding tb( 0 );
tb.set( U_TEXTURE , input_ );
tb.bind( );
glUniform1i( U_LOD , 0 );
glUniform2f( U_INPUT_SIZE ,
input_.width( ) ,
input_.height( ) );
2017-09-30 19:41:45 +02:00
glUniform3fv( U_PARAMS , 1 , filterParams_ );
2017-09-30 19:13:06 +02:00
glRectf( -1, -1 , 1 , 1 );
}
2017-09-30 21:22:38 +02:00
assert( glGetError( ) == GL_NO_ERROR );
2017-09-30 19:13:06 +02:00
2017-09-30 21:22:38 +02:00
enum {
U_TEXTURE = 0 ,
U_OUTPUT_SIZE = 1 ,
U_SOURCE_LOD = 2 ,
U_DIRECTION = 3 ,
U_WEIGHTS = 4 ,
};
for ( auto i = 0u ; i < BloomLevels ; i ++ ) {
T_TextureBinding tb( 0 );
if ( i > 0 ) {
spDownsample_.activate( );
2017-09-30 19:13:06 +02:00
rtBlur0_[ i ].activate( );
2017-09-30 21:22:38 +02:00
tb.set( 0 , txBlur0_ );
2017-09-30 19:13:06 +02:00
tb.bind( );
2017-09-30 21:22:38 +02:00
glUniform2f( 1 , txBlur0_.width( ) >> i ,
txBlur0_.height( ) >> i );
glUniform1i( 2 , i - 1 );
2017-09-30 19:13:06 +02:00
glRectf( -1 , -1 , 1 , 1 );
}
2017-09-30 21:22:38 +02:00
spBlur_.activate( );
glUniform4fv( U_WEIGHTS , 1 , blurWeights_ );
glUniform2f( U_OUTPUT_SIZE , rtBlur0_[ i ].width( ) ,
rtBlur0_[ i ].height( ) );
glUniform1i( U_SOURCE_LOD , i );
rtBlur1_[ i ].activate( );
glUniform2f( U_DIRECTION , blurSize_ , 0 );
tb.set( U_TEXTURE , txBlur0_ );
tb.bind( );
glRectf( -1 , -1 , 1 , 1 );
rtBlur0_[ i ].activate( );
glUniform2f( U_DIRECTION , 0 , blurSize_ );
tb.set( U_TEXTURE , txBlur1_ );
tb.bind( );
glRectf( -1 , -1 , 1 , 1 );
2017-09-30 19:13:06 +02:00
}
2017-10-01 11:37:04 +02:00
PEND( );
2017-09-30 19:13:06 +02:00
}
2017-09-30 19:41:45 +02:00
void T_BloomPass::makeUI( )
{
if ( !ImGui::CollapsingHeader( "Bloom" ) ) {
return;
}
ImGui::DragFloat3( "Filter" , filterParams_ , .01f , 0.1 , 10 );
ImGui::DragFloat4( "Weights" , blurWeights_ , .001f , 0. , 10 );
ImGui::DragFloat( "Blur size" , &blurSize_ , .001f , 0. , 10 );
}