diff options
author | Graham Linden <graham@lindenlab.com> | 2019-07-15 16:02:10 -0700 |
---|---|---|
committer | Graham Linden <graham@lindenlab.com> | 2019-07-15 16:02:10 -0700 |
commit | f6eab050178336a553f52837b8e8a4cc0bf6bacb (patch) | |
tree | eec24fd777df2f5e1a6d397cd7046ebcf6afe3d7 /indra/llappearance | |
parent | 2fa2da33022e0d64d02e0690f0345c5cc9dfca04 (diff) |
Fix OSX compiler error from missing defaulted param and changed signature of renderAlphaMaskTextures.
Diffstat (limited to 'indra/llappearance')
-rw-r--r-- | indra/llappearance/lltexlayer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llappearance/lltexlayer.cpp b/indra/llappearance/lltexlayer.cpp index 9d294645db..c90b11ae71 100644 --- a/indra/llappearance/lltexlayer.cpp +++ b/indra/llappearance/lltexlayer.cpp @@ -432,7 +432,7 @@ BOOL LLTexLayerSet::render( S32 x, S32 y, S32 width, S32 height, LLRenderTarget* } } - renderAlphaMaskTextures(x, y, width, height, false); + renderAlphaMaskTextures(x, y, width, height, bound_target, false); stop_glerror(); } |