Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Erwin <significant.bit@gmail.com>2017-03-21 08:36:51 +0300
committerMike Erwin <significant.bit@gmail.com>2017-03-21 08:36:51 +0300
commitbef63acbd6388eebc988d7941e651566db72a3f7 (patch)
tree1f1578fa2e3be2dd2e03c64e03148aa2271920f3 /source/blender/gpu/intern/gpu_matrix.c
parent54bed786a6304a1cb33980bcdf6ea8ccd73ff7e1 (diff)
remove gpuMatrixUpdate_legacy function
No longer needed since 231b5d96bbfd77253941dd37cc4929e4e119d706 tracks dirty state of legacy matrix stacks. Part of T49450
Diffstat (limited to 'source/blender/gpu/intern/gpu_matrix.c')
-rw-r--r--source/blender/gpu/intern/gpu_matrix.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/source/blender/gpu/intern/gpu_matrix.c b/source/blender/gpu/intern/gpu_matrix.c
index 40e718594c5..1cdef0d40f3 100644
--- a/source/blender/gpu/intern/gpu_matrix.c
+++ b/source/blender/gpu/intern/gpu_matrix.c
@@ -809,11 +809,3 @@ bool gpuMatricesDirty(void)
{
return state.dirty;
}
-
-#if SUPPORT_LEGACY_MATRIX
-void gpuMatrixUpdate_legacy(void)
-{
- BLI_assert(state.mode == MATRIX_MODE_INACTIVE);
- state.dirty = true;
-}
-#endif