Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
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
Alchemy Viewer
Alchemy Viewer
Commits
ad181dca
Commit
ad181dca
authored
14 years ago
by
David Parks
Browse files
Options
Downloads
Patches
Plain Diff
Fix for crash when toggling anisotropic filtering.
parent
40e9566d
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
indra/llrender/llimagegl.h
+1
-0
1 addition, 0 deletions
indra/llrender/llimagegl.h
indra/newview/llfloaterhardwaresettings.cpp
+0
-25
0 additions, 25 deletions
indra/newview/llfloaterhardwaresettings.cpp
indra/newview/llviewercontrol.cpp
+8
-0
8 additions, 0 deletions
indra/newview/llviewercontrol.cpp
with
9 additions
and
25 deletions
indra/llrender/llimagegl.h
+
1
−
0
View file @
ad181dca
...
@@ -64,6 +64,7 @@ class LLImageGL : public LLRefCount
...
@@ -64,6 +64,7 @@ class LLImageGL : public LLRefCount
// Save off / restore GL textures
// Save off / restore GL textures
static
void
destroyGL
(
BOOL
save_state
=
TRUE
);
static
void
destroyGL
(
BOOL
save_state
=
TRUE
);
static
void
restoreGL
();
static
void
restoreGL
();
static
void
dirtyTexOptions
();
// Sometimes called externally for textures not using LLImageGL (should go away...)
// Sometimes called externally for textures not using LLImageGL (should go away...)
static
S32
updateBoundTexMem
(
const
S32
mem
,
const
S32
ncomponents
,
S32
category
)
;
static
S32
updateBoundTexMem
(
const
S32
mem
,
const
S32
ncomponents
,
S32
category
)
;
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llfloaterhardwaresettings.cpp
+
0
−
25
View file @
ad181dca
...
@@ -131,31 +131,6 @@ BOOL LLFloaterHardwareSettings::postBuild()
...
@@ -131,31 +131,6 @@ BOOL LLFloaterHardwareSettings::postBuild()
void
LLFloaterHardwareSettings
::
apply
()
void
LLFloaterHardwareSettings
::
apply
()
{
{
// Anisotropic rendering
//Do nothing here -- this code is unreliable, and UI now tells users to restart for changes to take affect
/*BOOL old_anisotropic = LLImageGL::sGlobalUseAnisotropic;
LLImageGL::sGlobalUseAnisotropic = getChild<LLUICtrl>("ani")->getValue();
U32 fsaa = (U32) getChild<LLUICtrl>("fsaa")->getValue().asInteger();
U32 old_fsaa = gSavedSettings.getU32("RenderFSAASamples");
BOOL logged_in = (LLStartUp::getStartupState() >= STATE_STARTED);
if (old_fsaa != fsaa)
{
gSavedSettings.setU32("RenderFSAASamples", fsaa);
LLWindow* window = gViewerWindow->getWindow();
LLCoordScreen size;
window->getSize(&size);
gViewerWindow->changeDisplaySettings(size,
gSavedSettings.getBOOL("DisableVerticalSync"),
logged_in);
}
else if (old_anisotropic != LLImageGL::sGlobalUseAnisotropic)
{
gViewerWindow->restartDisplay(logged_in);
}*/
refresh
();
refresh
();
}
}
...
...
This diff is collapsed.
Click to expand it.
indra/newview/llviewercontrol.cpp
+
8
−
0
View file @
ad181dca
...
@@ -131,6 +131,13 @@ static bool handleReleaseGLBufferChanged(const LLSD& newvalue)
...
@@ -131,6 +131,13 @@ static bool handleReleaseGLBufferChanged(const LLSD& newvalue)
return
true
;
return
true
;
}
}
static
bool
handleAnisotropicChanged
(
const
LLSD
&
newvalue
)
{
LLImageGL
::
sGlobalUseAnisotropic
=
newvalue
.
asBoolean
();
LLImageGL
::
dirtyTexOptions
();
return
true
;
}
static
bool
handleVolumeLODChanged
(
const
LLSD
&
newvalue
)
static
bool
handleVolumeLODChanged
(
const
LLSD
&
newvalue
)
{
{
LLVOVolume
::
sLODFactor
=
(
F32
)
newvalue
.
asReal
();
LLVOVolume
::
sLODFactor
=
(
F32
)
newvalue
.
asReal
();
...
@@ -498,6 +505,7 @@ void settings_setup_listeners()
...
@@ -498,6 +505,7 @@ void settings_setup_listeners()
gSavedSettings
.
getControl
(
"RenderSpecularResY"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleReleaseGLBufferChanged
,
_2
));
gSavedSettings
.
getControl
(
"RenderSpecularResY"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleReleaseGLBufferChanged
,
_2
));
gSavedSettings
.
getControl
(
"RenderSpecularExponent"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleReleaseGLBufferChanged
,
_2
));
gSavedSettings
.
getControl
(
"RenderSpecularExponent"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleReleaseGLBufferChanged
,
_2
));
gSavedSettings
.
getControl
(
"RenderFSAASamples"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleReleaseGLBufferChanged
,
_2
));
gSavedSettings
.
getControl
(
"RenderFSAASamples"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleReleaseGLBufferChanged
,
_2
));
gSavedSettings
.
getControl
(
"RenderAnisotropic"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleAnisotropicChanged
,
_2
));
gSavedSettings
.
getControl
(
"RenderShadowResolutionScale"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleReleaseGLBufferChanged
,
_2
));
gSavedSettings
.
getControl
(
"RenderShadowResolutionScale"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleReleaseGLBufferChanged
,
_2
));
gSavedSettings
.
getControl
(
"RenderGlow"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleReleaseGLBufferChanged
,
_2
));
gSavedSettings
.
getControl
(
"RenderGlow"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleReleaseGLBufferChanged
,
_2
));
gSavedSettings
.
getControl
(
"RenderGlow"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleSetShaderChanged
,
_2
));
gSavedSettings
.
getControl
(
"RenderGlow"
)
->
getSignal
()
->
connect
(
boost
::
bind
(
&
handleSetShaderChanged
,
_2
));
...
...
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