Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
XDG Integration
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
JennaHuntsman
XDG Integration
Commits
6a92695d
Commit
6a92695d
authored
1 year ago
by
Darl Cat
Browse files
Options
Downloads
Patches
Plain Diff
Add user_settings colorlut loading for lightbox floater
parent
23c14b27
No related branches found
No related tags found
2 merge requests
!3
Update to main branch
,
!2
Rebase onto current main branch
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
indra/newview/alfloaterlightbox.cpp
+24
-2
24 additions, 2 deletions
indra/newview/alfloaterlightbox.cpp
indra/newview/alfloaterlightbox.h
+1
-0
1 addition, 0 deletions
indra/newview/alfloaterlightbox.h
indra/newview/alrenderutils.cpp
+6
-0
6 additions, 0 deletions
indra/newview/alrenderutils.cpp
with
31 additions
and
2 deletions
indra/newview/alfloaterlightbox.cpp
+
24
−
2
View file @
6a92695d
...
@@ -53,9 +53,10 @@ ALFloaterLightBox::~ALFloaterLightBox()
...
@@ -53,9 +53,10 @@ ALFloaterLightBox::~ALFloaterLightBox()
BOOL
ALFloaterLightBox
::
postBuild
()
BOOL
ALFloaterLightBox
::
postBuild
()
{
{
updateTonemapper
();
updateTonemapper
();
mTonemapConnection
=
gSavedSettings
.
getControl
(
"RenderToneMapType"
)
->
getSignal
()
->
connect
([
&
](
LLControlVariable
*
control
,
const
LLSD
&
,
const
LLSD
&
){
updateTonemapper
();
});
mTonemapConnection
=
gSavedSettings
.
getControl
(
"RenderToneMapType"
)
->
getSignal
()
->
connect
([
&
](
LLControlVariable
*
control
,
const
LLSD
&
,
const
LLSD
&
){
updateTonemapper
();
});
mCASConnection
=
gSavedSettings
.
getControl
(
"RenderSharpenMethod"
)
->
getSignal
()
->
connect
([
&
](
LLControlVariable
*
control
,
const
LLSD
&
,
const
LLSD
&
){
updateCAS
();
});
mCASConnection
=
gSavedSettings
.
getControl
(
"RenderSharpenMethod"
)
->
getSignal
()
->
connect
([
&
](
LLControlVariable
*
control
,
const
LLSD
&
,
const
LLSD
&
){
updateCAS
();
});
populateLUTCombo
();
return
TRUE
;
return
TRUE
;
}
}
...
@@ -65,6 +66,27 @@ void ALFloaterLightBox::draw()
...
@@ -65,6 +66,27 @@ void ALFloaterLightBox::draw()
LLFloater
::
draw
();
LLFloater
::
draw
();
}
}
void
ALFloaterLightBox
::
populateLUTCombo
()
{
LLComboBox
*
lut_combo
=
getChild
<
LLComboBox
>
(
"colorlut_combo"
);
const
std
::
string
&
user_luts
=
gDirUtilp
->
getExpandedFilename
(
LL_PATH_USER_SETTINGS
,
"colorlut"
);
if
(
boost
::
filesystem
::
is_directory
(
user_luts
))
{
if
(
!
boost
::
filesystem
::
is_empty
(
user_luts
))
{
lut_combo
->
addSeparator
();
}
for
(
boost
::
filesystem
::
directory_entry
&
lut
:
boost
::
filesystem
::
directory_iterator
(
user_luts
))
{
std
::
string
lut_stem
=
lut
.
path
().
stem
().
string
();
std
::
string
lut_filename
=
lut
.
path
().
filename
().
string
();
lut_combo
->
add
(
lut_stem
,
lut_filename
);
}
lut_combo
->
selectByValue
(
gSavedSettings
.
getString
(
"RenderColorGradeLUT"
));
lut_combo
->
resetDirty
();
}
}
void
ALFloaterLightBox
::
onClickResetControlDefault
(
const
LLSD
&
userdata
)
void
ALFloaterLightBox
::
onClickResetControlDefault
(
const
LLSD
&
userdata
)
{
{
const
std
::
string
&
control_name
=
userdata
.
asString
();
const
std
::
string
&
control_name
=
userdata
.
asString
();
...
...
This diff is collapsed.
Click to expand it.
indra/newview/alfloaterlightbox.h
+
1
−
0
View file @
6a92695d
...
@@ -50,6 +50,7 @@ class ALFloaterLightBox final : public LLFloater
...
@@ -50,6 +50,7 @@ class ALFloaterLightBox final : public LLFloater
void
onClickResetGroupDefault
(
const
LLSD
&
userdata
);
void
onClickResetGroupDefault
(
const
LLSD
&
userdata
);
void
updateTonemapper
();
void
updateTonemapper
();
void
updateCAS
();
void
updateCAS
();
void
populateLUTCombo
();
boost
::
signals2
::
scoped_connection
mTonemapConnection
;
boost
::
signals2
::
scoped_connection
mTonemapConnection
;
boost
::
signals2
::
scoped_connection
mCASConnection
;
boost
::
signals2
::
scoped_connection
mCASConnection
;
...
...
This diff is collapsed.
Click to expand it.
indra/newview/alrenderutils.cpp
+
6
−
0
View file @
6a92695d
...
@@ -471,6 +471,12 @@ bool ALRenderUtil::setupColorGrade()
...
@@ -471,6 +471,12 @@ bool ALRenderUtil::setupColorGrade()
if
(
!
lut_name
.
empty
())
if
(
!
lut_name
.
empty
())
{
{
std
::
string
lut_path
=
gDirUtilp
->
getExpandedFilename
(
LL_PATH_APP_SETTINGS
,
"colorlut"
,
lut_name
);
std
::
string
lut_path
=
gDirUtilp
->
getExpandedFilename
(
LL_PATH_APP_SETTINGS
,
"colorlut"
,
lut_name
);
if
(
!
gDirUtilp
->
fileExists
(
lut_path
))
{
lut_path
=
gDirUtilp
->
getExpandedFilename
(
LL_PATH_USER_SETTINGS
,
"colorlut"
,
lut_name
);
}
if
(
!
lut_path
.
empty
())
if
(
!
lut_path
.
empty
())
{
{
std
::
string
temp_exten
=
gDirUtilp
->
getExtension
(
lut_path
);
std
::
string
temp_exten
=
gDirUtilp
->
getExtension
(
lut_path
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment