API Documentation
MipDescriptor.h
1 // MipDescriptor.h
3 //
5 
6 namespace nkImages
7 {
11  struct MipDescriptor final
12  {
13  unsigned int _width = 0 ;
14  unsigned int _height = 0 ;
15  unsigned int _depth = 0 ;
16 
17  unsigned int _rowByteSize = 0 ;
18  unsigned int _sliceByteSize = 0 ;
19  } ;
20 }
nkImages
Encompasses all API of component NilkinsImages.
Definition: BmpEncoder.h:7
nkImages::MipDescriptor::_height
unsigned int _height
Height in pixels.
Definition: MipDescriptor.h:14
nkImages::MipDescriptor::_rowByteSize
unsigned int _rowByteSize
Size of a row, in bytes.
Definition: MipDescriptor.h:17
nkImages::MipDescriptor
Describes a mip within an image. Used internally.
Definition: MipDescriptor.h:12
nkImages::MipDescriptor::_depth
unsigned int _depth
Depth in pixels.
Definition: MipDescriptor.h:15
nkImages::MipDescriptor::_width
unsigned int _width
Width in pixels.
Definition: MipDescriptor.h:13
nkImages::MipDescriptor::_sliceByteSize
unsigned int _sliceByteSize
Size of a slice, in bytes.
Definition: MipDescriptor.h:18