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
a63bf093
Commit
a63bf093
authored
3 years ago
by
Rye Mutt
Browse files
Options
Downloads
Patches
Plain Diff
Optimize syncMatrices
parent
84581e77
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/llrender/llrender.cpp
+25
-31
25 additions, 31 deletions
indra/llrender/llrender.cpp
with
25 additions
and
31 deletions
indra/llrender/llrender.cpp
+
25
−
31
View file @
a63bf093
...
@@ -1275,12 +1275,11 @@ void LLRender::syncMatrices()
...
@@ -1275,12 +1275,11 @@ void LLRender::syncMatrices()
LLGLSLShader
*
shader
=
LLGLSLShader
::
sCurBoundShaderPtr
;
LLGLSLShader
*
shader
=
LLGLSLShader
::
sCurBoundShaderPtr
;
static
glh
::
matrix4f
cached_mvp
;
static
LLMatrix4a
cached_mvp
;
static
glh
::
matrix4f
cached_inv_mdv
;
static
U32
cached_mvp_mdv_hash
=
0xFFFFFFFF
;
static
U32
cached_mvp_mdv_hash
=
0xFFFFFFFF
;
static
U32
cached_mvp_proj_hash
=
0xFFFFFFFF
;
static
U32
cached_mvp_proj_hash
=
0xFFFFFFFF
;
static
glh
::
m
atrix4
f
cached_normal
;
static
LLM
atrix4
a
cached_normal
;
static
U32
cached_normal_hash
=
0xFFFFFFFF
;
static
U32
cached_normal_hash
=
0xFFFFFFFF
;
if
(
shader
)
if
(
shader
)
...
@@ -1292,15 +1291,10 @@ void LLRender::syncMatrices()
...
@@ -1292,15 +1291,10 @@ void LLRender::syncMatrices()
U32
i
=
MM_MODELVIEW
;
U32
i
=
MM_MODELVIEW
;
if
(
mMatHash
[
MM_MODELVIEW
]
!=
shader
->
mMatHash
[
MM_MODELVIEW
])
if
(
mMatHash
[
MM_MODELVIEW
]
!=
shader
->
mMatHash
[
MM_MODELVIEW
])
{
//update modelview, normal, and MVP
{
//update modelview, normal, and MVP
glh
::
matrix4f
&
mat
=
mMatrix
[
MM_MODELVIEW
][
mMatIdx
[
MM_MODELVIEW
]];
LLMatrix4a
mat
;
mat
.
loadu
(
mMatrix
[
MM_MODELVIEW
][
mMatIdx
[
MM_MODELVIEW
]].
m
);
// if MDV has changed, update the cached inverse as well
shader
->
uniformMatrix4fv
(
name
[
MM_MODELVIEW
],
1
,
GL_FALSE
,
mat
.
getF32ptr
());
if
(
cached_mvp_mdv_hash
!=
mMatHash
[
MM_MODELVIEW
])
{
cached_inv_mdv
=
mat
.
inverse
();
}
shader
->
uniformMatrix4fv
(
name
[
MM_MODELVIEW
],
1
,
GL_FALSE
,
mat
.
m
);
shader
->
mMatHash
[
MM_MODELVIEW
]
=
mMatHash
[
MM_MODELVIEW
];
shader
->
mMatHash
[
MM_MODELVIEW
]
=
mMatHash
[
MM_MODELVIEW
];
//update normal matrix
//update normal matrix
...
@@ -1309,20 +1303,20 @@ void LLRender::syncMatrices()
...
@@ -1309,20 +1303,20 @@ void LLRender::syncMatrices()
{
{
if
(
cached_normal_hash
!=
mMatHash
[
i
])
if
(
cached_normal_hash
!=
mMatHash
[
i
])
{
{
cached_normal
=
cached_inv_mdv
.
transpose
();
cached_normal
=
mat
;
cached_normal
.
invert
();
cached_normal
.
transpose
();
cached_normal_hash
=
mMatHash
[
i
];
cached_normal_hash
=
mMatHash
[
i
];
}
}
glh
::
m
atrix4
f
&
norm
=
cached_normal
;
const
LLM
atrix4
a
&
norm
=
cached_normal
;
F32
norm_mat
[]
=
LLVector3
norms
[
3
];
{
norms
[
0
].
set
(
norm
.
getRow
<
0
>
().
getF32ptr
());
norm
.
m
[
0
],
norm
.
m
[
1
],
norm
.
m
[
2
],
norms
[
1
].
set
(
norm
.
getRow
<
1
>
().
getF32ptr
());
norm
.
m
[
4
],
norm
.
m
[
5
],
norm
.
m
[
6
],
norms
[
2
].
set
(
norm
.
getRow
<
2
>
().
getF32ptr
());
norm
.
m
[
8
],
norm
.
m
[
9
],
norm
.
m
[
10
]
};
shader
->
uniformMatrix3fv
(
LLShaderMgr
::
NORMAL_MATRIX
,
1
,
GL_FALSE
,
norm
_mat
);
shader
->
uniformMatrix3fv
(
LLShaderMgr
::
NORMAL_MATRIX
,
1
,
GL_FALSE
,
norm
s
[
0
].
mV
);
}
}
//update MVP matrix
//update MVP matrix
...
@@ -1330,24 +1324,24 @@ void LLRender::syncMatrices()
...
@@ -1330,24 +1324,24 @@ void LLRender::syncMatrices()
loc
=
shader
->
getUniformLocation
(
LLShaderMgr
::
MODELVIEW_PROJECTION_MATRIX
);
loc
=
shader
->
getUniformLocation
(
LLShaderMgr
::
MODELVIEW_PROJECTION_MATRIX
);
if
(
loc
>
-
1
)
if
(
loc
>
-
1
)
{
{
U32
proj
=
MM_PROJECTION
;
if
(
cached_mvp_mdv_hash
!=
mMatHash
[
i
]
||
cached_mvp_proj_hash
!=
mMatHash
[
MM_PROJECTION
])
if
(
cached_mvp_mdv_hash
!=
mMatHash
[
i
]
||
cached_mvp_proj_hash
!=
mMatHash
[
MM_PROJECTION
])
{
{
cached_mvp
=
mat
;
LLMatrix4a
proj
;
cached_mvp
.
mult_left
(
mMatrix
[
proj
][
mMatIdx
[
proj
]]);
proj
.
loadu
(
mMatrix
[
MM_PROJECTION
][
mMatIdx
[
MM_PROJECTION
]].
m
);
cached_mvp
.
setMul
(
proj
,
mat
);
cached_mvp_mdv_hash
=
mMatHash
[
i
];
cached_mvp_mdv_hash
=
mMatHash
[
i
];
cached_mvp_proj_hash
=
mMatHash
[
MM_PROJECTION
];
cached_mvp_proj_hash
=
mMatHash
[
MM_PROJECTION
];
}
}
shader
->
uniformMatrix4fv
(
LLShaderMgr
::
MODELVIEW_PROJECTION_MATRIX
,
1
,
GL_FALSE
,
cached_mvp
.
m
);
shader
->
uniformMatrix4fv
(
LLShaderMgr
::
MODELVIEW_PROJECTION_MATRIX
,
1
,
GL_FALSE
,
cached_mvp
.
getF32ptr
()
);
}
}
}
}
i
=
MM_PROJECTION
;
i
=
MM_PROJECTION
;
if
(
mMatHash
[
MM_PROJECTION
]
!=
shader
->
mMatHash
[
MM_PROJECTION
])
if
(
mMatHash
[
MM_PROJECTION
]
!=
shader
->
mMatHash
[
MM_PROJECTION
])
{
//update projection matrix, normal, and MVP
{
//update projection matrix, normal, and MVP
glh
::
matrix4f
&
mat
=
mMatrix
[
MM_PROJECTION
][
mMatIdx
[
MM_PROJECTION
]];
LLMatrix4a
mat
;
mat
.
loadu
(
mMatrix
[
MM_PROJECTION
][
mMatIdx
[
MM_PROJECTION
]].
m
);
// it would be nice to have this automatically track the state of the proj matrix
// it would be nice to have this automatically track the state of the proj matrix
// but certain render paths (deferred lighting) require it to be mismatched *sigh*
// but certain render paths (deferred lighting) require it to be mismatched *sigh*
...
@@ -1357,7 +1351,7 @@ void LLRender::syncMatrices()
...
@@ -1357,7 +1351,7 @@ void LLRender::syncMatrices()
// shader->uniformMatrix4fv(LLShaderMgr::INVERSE_PROJECTION_MATRIX, 1, FALSE, inv_proj.m);
// shader->uniformMatrix4fv(LLShaderMgr::INVERSE_PROJECTION_MATRIX, 1, FALSE, inv_proj.m);
//}
//}
shader
->
uniformMatrix4fv
(
name
[
MM_PROJECTION
],
1
,
GL_FALSE
,
mat
.
m
);
shader
->
uniformMatrix4fv
(
name
[
MM_PROJECTION
],
1
,
GL_FALSE
,
mat
.
getF32ptr
()
);
shader
->
mMatHash
[
MM_PROJECTION
]
=
mMatHash
[
MM_PROJECTION
];
shader
->
mMatHash
[
MM_PROJECTION
]
=
mMatHash
[
MM_PROJECTION
];
if
(
!
mvp_done
)
if
(
!
mvp_done
)
...
@@ -1368,14 +1362,14 @@ void LLRender::syncMatrices()
...
@@ -1368,14 +1362,14 @@ void LLRender::syncMatrices()
{
{
if
(
cached_mvp_mdv_hash
!=
mMatHash
[
MM_PROJECTION
]
||
cached_mvp_proj_hash
!=
mMatHash
[
MM_PROJECTION
])
if
(
cached_mvp_mdv_hash
!=
mMatHash
[
MM_PROJECTION
]
||
cached_mvp_proj_hash
!=
mMatHash
[
MM_PROJECTION
])
{
{
U32
mdv
=
MM_MODELVIEW
;
LLMatrix4a
mdv
;
cached_mvp
=
mat
;
mdv
.
loadu
(
mMatrix
[
MM_MODELVIEW
][
mMatIdx
[
MM_MODELVIEW
]].
m
)
;
cached_mvp
.
mult_right
(
m
M
at
rix
[
mdv
][
mMatIdx
[
mdv
]]
);
cached_mvp
.
setMul
(
mat
,
mdv
);
cached_mvp_mdv_hash
=
mMatHash
[
MM_MODELVIEW
];
cached_mvp_mdv_hash
=
mMatHash
[
MM_MODELVIEW
];
cached_mvp_proj_hash
=
mMatHash
[
MM_PROJECTION
];
cached_mvp_proj_hash
=
mMatHash
[
MM_PROJECTION
];
}
}
shader
->
uniformMatrix4fv
(
LLShaderMgr
::
MODELVIEW_PROJECTION_MATRIX
,
1
,
GL_FALSE
,
cached_mvp
.
m
);
shader
->
uniformMatrix4fv
(
LLShaderMgr
::
MODELVIEW_PROJECTION_MATRIX
,
1
,
GL_FALSE
,
cached_mvp
.
getF32ptr
()
);
}
}
}
}
}
}
...
...
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