mirror of
https://github.com/JulianGro/overte.git
synced 2025-05-07 15:39:51 +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::string _source;
|
||||||
std::unique_ptr< Storage > _storage;
|
std::unique_ptr< Storage > _storage;
|
||||||
|
|
||||||
Stamp _stamp = 0;
|
Stamp _stamp { 0 };
|
||||||
|
|
||||||
Sampler _sampler;
|
Sampler _sampler;
|
||||||
Stamp _samplerStamp;
|
Stamp _samplerStamp { 0 };
|
||||||
|
|
||||||
uint32 _size = 0;
|
uint32 _size { 0 };
|
||||||
Element _texelFormat;
|
Element _texelFormat;
|
||||||
|
|
||||||
uint16 _width { 1 };
|
uint16 _width { 1 };
|
||||||
|
@ -554,7 +554,7 @@ protected:
|
||||||
uint16 _maxMip { 0 };
|
uint16 _maxMip { 0 };
|
||||||
uint16 _minMip { 0 };
|
uint16 _minMip { 0 };
|
||||||
|
|
||||||
Type _type = TEX_1D;
|
Type _type { TEX_1D };
|
||||||
|
|
||||||
Usage _usage;
|
Usage _usage;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue