mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-01 17:40:25 +01:00
mesa: remove unused ureg:negateabs field
This commit is contained in:
parent
9ed0315271
commit
c7ba2b8622
1 changed files with 1 additions and 4 deletions
|
|
@ -458,9 +458,8 @@ struct ureg {
|
|||
GLuint idx:8;
|
||||
GLuint negatebase:1;
|
||||
GLuint abs:1;
|
||||
GLuint negateabs:1;
|
||||
GLuint swz:12;
|
||||
GLuint pad:5;
|
||||
GLuint pad:6;
|
||||
};
|
||||
|
||||
static const struct ureg undef = {
|
||||
|
|
@ -469,7 +468,6 @@ static const struct ureg undef = {
|
|||
0,
|
||||
0,
|
||||
0,
|
||||
0,
|
||||
0
|
||||
};
|
||||
|
||||
|
|
@ -516,7 +514,6 @@ static struct ureg make_ureg(GLuint file, GLuint idx)
|
|||
reg.idx = idx;
|
||||
reg.negatebase = 0;
|
||||
reg.abs = 0;
|
||||
reg.negateabs = 0;
|
||||
reg.swz = SWIZZLE_NOOP;
|
||||
reg.pad = 0;
|
||||
return reg;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue