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
2f4931a0
Commit
2f4931a0
authored
7 years ago
by
andreykproductengine
Browse files
Options
Downloads
Patches
Plain Diff
MAINT-8197 Account for dummy tex unit
parent
a148882d
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/newview/llglsandbox.cpp
+27
-6
27 additions, 6 deletions
indra/newview/llglsandbox.cpp
with
27 additions
and
6 deletions
indra/newview/llglsandbox.cpp
+
27
−
6
View file @
2f4931a0
...
...
@@ -957,14 +957,21 @@ F32 gpu_benchmark()
~
TextureHolder
()
{
// unbind
texUnit
->
unbind
(
LLTexUnit
::
TT_TEXTURE
);
if
(
texUnit
)
{
texUnit
->
unbind
(
LLTexUnit
::
TT_TEXTURE
);
}
// ensure that we delete these textures regardless of how we exit
LLImageGL
::
deleteTextures
(
source
.
size
(),
&
source
[
0
]);
}
void
bind
(
U32
index
)
bool
bind
(
U32
index
)
{
texUnit
->
bindManual
(
LLTexUnit
::
TT_TEXTURE
,
source
[
index
]);
if
(
texUnit
)
// should always be there with dummy (-1), but just in case
{
return
texUnit
->
bindManual
(
LLTexUnit
::
TT_TEXTURE
,
source
[
index
]);
}
return
false
;
}
private
:
...
...
@@ -992,13 +999,27 @@ F32 gpu_benchmark()
LLGLDepthTest
depth
(
GL_FALSE
);
for
(
U32
i
=
0
;
i
<
count
;
++
i
)
{
//allocate render targets and textures
dest
[
i
].
allocate
(
res
,
res
,
GL_RGBA
,
false
,
false
,
LLTexUnit
::
TT_TEXTURE
,
true
);
{
//allocate render targets and textures
if
(
!
dest
[
i
].
allocate
(
res
,
res
,
GL_RGBA
,
false
,
false
,
LLTexUnit
::
TT_TEXTURE
,
true
))
{
LL_WARNS
()
<<
"Failed to allocate render target."
<<
LL_ENDL
;
// abandon the benchmark test
delete
[]
pixels
;
return
-
1.
f
;
}
dest
[
i
].
bindTarget
();
dest
[
i
].
clear
();
dest
[
i
].
flush
();
texHolder
.
bind
(
i
);
if
(
!
texHolder
.
bind
(
i
))
{
// can use a dummy value mDummyTexUnit = new LLTexUnit(-1);
LL_WARNS
()
<<
"Failed to bind tex unit."
<<
LL_ENDL
;
// abandon the benchmark test
delete
[]
pixels
;
return
-
1.
f
;
}
LLImageGL
::
setManualImage
(
GL_TEXTURE_2D
,
0
,
GL_RGBA
,
res
,
res
,
GL_RGBA
,
GL_UNSIGNED_BYTE
,
pixels
);
}
...
...
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