mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-04-30 23:28:06 +02:00
glu/sgi: Initialize member of struct Property.
This commit is contained in:
parent
646c8ce032
commit
37e5626111
1 changed files with 1 additions and 1 deletions
|
|
@ -123,7 +123,7 @@ struct Property : public PooledObj {
|
|||
REAL value;
|
||||
int save; /* 1 if in display list */
|
||||
Property( long _type, long _tag, INREAL _value )
|
||||
{ type = _type; tag = _tag; value = (REAL) _value; }
|
||||
{ type = _type; tag = _tag; value = (REAL) _value; save = 0; }
|
||||
Property( long _tag, INREAL _value )
|
||||
{ type = 0; tag = _tag; value = (REAL) _value; save = 0; }
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue