mirror of
https://github.com/overte-org/overte.git
synced 2025-04-16 10:28:57 +02:00
Add initialization to sampler stamp
This commit is contained in:
parent
893fcba283
commit
4868a1618a
1 changed files with 4 additions and 4 deletions
|
@ -536,12 +536,12 @@ protected:
|
|||
std::string _source;
|
||||
std::unique_ptr< Storage > _storage;
|
||||
|
||||
Stamp _stamp = 0;
|
||||
Stamp _stamp { 0 };
|
||||
|
||||
Sampler _sampler;
|
||||
Stamp _samplerStamp;
|
||||
Stamp _samplerStamp { 0 };
|
||||
|
||||
uint32 _size = 0;
|
||||
uint32 _size { 0 };
|
||||
Element _texelFormat;
|
||||
|
||||
uint16 _width { 1 };
|
||||
|
@ -554,7 +554,7 @@ protected:
|
|||
uint16 _maxMip { 0 };
|
||||
uint16 _minMip { 0 };
|
||||
|
||||
Type _type = TEX_1D;
|
||||
Type _type { TEX_1D };
|
||||
|
||||
Usage _usage;
|
||||
|
||||
|
|
Loading…
Reference in a new issue