diff options
| -rw-r--r-- | indra/newview/pipeline.cpp | 4 | 
1 files changed, 4 insertions, 0 deletions
| diff --git a/indra/newview/pipeline.cpp b/indra/newview/pipeline.cpp index 76ad7fd83e..85a7691ead 100644 --- a/indra/newview/pipeline.cpp +++ b/indra/newview/pipeline.cpp @@ -6405,6 +6405,10 @@ void LLPipeline::renderBloom(BOOL for_snapshot, F32 zoom_factor, int subfield)  		bool multisample = RenderFSAASamples > 1; +#if LL_DARWIN //force FXAA to off on OSX (SH-2620) +		multisample = false; +#endif +  		if (multisample)  		{  			//bake out texture2D with RGBL for FXAA shader | 
