From 2ae430dc497f57f95249d6a16d503038047747b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20Beno=C3=AEt?= Date: Fri, 6 Oct 2017 10:52:33 +0200 Subject: [PATCH] Fixed FXAA input --- fxaa.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fxaa.cc b/fxaa.cc index d914eaf..dbf8cd6 100644 --- a/fxaa.cc +++ b/fxaa.cc @@ -33,7 +33,7 @@ void T_FXAAPass::render( ) U_PARAMETERS , }; auto& tm( Globals::Textures( ) ); - tm.bind( 0 , txInput_ ); + tm.bind( 0 , txInput_ , *tm.sampler( "linear-border" ) ); const auto id( program_.program( E_ShaderType::FRAGMENT ) ); program_.enable( );