diff options
author | RunitaiLinden <davep@lindenlab.com> | 2024-05-06 16:49:24 -0500 |
---|---|---|
committer | RunitaiLinden <davep@lindenlab.com> | 2024-05-06 16:49:24 -0500 |
commit | 8b747cee182cd8e95063fa152d9b5d7383cb1c74 (patch) | |
tree | b91494298eab93bbd8dd9b00722b7a30714a1b9c /indra/newview/llgltfmaterialpreviewmgr.cpp | |
parent | c6d752b880cacca8fb8f10f28790a50161fcb9ab (diff) |
BOOL to bool
Diffstat (limited to 'indra/newview/llgltfmaterialpreviewmgr.cpp')
-rw-r--r-- | indra/newview/llgltfmaterialpreviewmgr.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indra/newview/llgltfmaterialpreviewmgr.cpp b/indra/newview/llgltfmaterialpreviewmgr.cpp index 1c39f1ae7d..84dd081a0a 100644 --- a/indra/newview/llgltfmaterialpreviewmgr.cpp +++ b/indra/newview/llgltfmaterialpreviewmgr.cpp @@ -196,7 +196,7 @@ LLPointer<LLGLTFPreviewTexture> LLGLTFPreviewTexture::create(LLPointer<LLFetched return new LLGLTFPreviewTexture(material, LLPipeline::MAX_BAKE_WIDTH); } -BOOL LLGLTFPreviewTexture::needsRender() +bool LLGLTFPreviewTexture::needsRender() { LL_PROFILE_ZONE_SCOPED_CATEGORY_UI; @@ -211,7 +211,7 @@ BOOL LLGLTFPreviewTexture::needsRender() return false; } -void LLGLTFPreviewTexture::preRender(BOOL clear_depth) +void LLGLTFPreviewTexture::preRender(bool clear_depth) { LL_PROFILE_ZONE_SCOPED_CATEGORY_UI; @@ -419,7 +419,7 @@ struct SetTemporarily }; // namespace -BOOL LLGLTFPreviewTexture::render() +bool LLGLTFPreviewTexture::render() { LL_PROFILE_ZONE_SCOPED_CATEGORY_UI; @@ -557,7 +557,7 @@ BOOL LLGLTFPreviewTexture::render() return TRUE; } -void LLGLTFPreviewTexture::postRender(BOOL success) +void LLGLTFPreviewTexture::postRender(bool success) { LL_PROFILE_ZONE_SCOPED_CATEGORY_UI; |