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:
authorClément Foucault <foucault.clem@gmail.com>2019-05-11 15:04:18 +0300
committerClément Foucault <foucault.clem@gmail.com>2019-05-14 11:57:03 +0300
commit642c8010b210e1671f4faa0ca1c097c77f19042a (patch)
tree1f86ec239b79179e8b78341136e1f3ea3bf942bb /source/blender/draw/intern/draw_manager.h
parentb13e0568d3ab1487b4787806b2d9f4116192983c (diff)
DRW: Remove ModelViewMatrix and ModelViewMatrixInverse
Diffstat (limited to 'source/blender/draw/intern/draw_manager.h')
-rw-r--r--source/blender/draw/intern/draw_manager.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/source/blender/draw/intern/draw_manager.h b/source/blender/draw/intern/draw_manager.h
index a1f9bb6713c..20dfe8bc057 100644
--- a/source/blender/draw/intern/draw_manager.h
+++ b/source/blender/draw/intern/draw_manager.h
@@ -100,8 +100,6 @@ enum {
/* Used by DRWCallState.matflag */
enum {
DRW_CALL_MODELINVERSE = (1 << 0),
- DRW_CALL_MODELVIEW = (1 << 1),
- DRW_CALL_MODELVIEWINVERSE = (1 << 2),
DRW_CALL_MODELVIEWPROJECTION = (1 << 3),
DRW_CALL_ORCOTEXFAC = (1 << 7),
DRW_CALL_OBJECTINFO = (1 << 8),
@@ -120,8 +118,6 @@ typedef struct DRWCallState {
/* Matrices */
float model[4][4];
float modelinverse[4][4];
- float modelview[4][4];
- float modelviewinverse[4][4];
float modelviewprojection[4][4];
float orcotexfac[2][3]; /* Not view dependent */
float objectinfo[2];
@@ -250,8 +246,6 @@ struct DRWShadingGroup {
/* Builtin matrices locations */
int model;
int modelinverse;
- int modelview;
- int modelviewinverse;
int modelviewprojection;
int orcotexfac;
int callid;