0.9.9 API documenation
Enumerations
qualifier.hpp File Reference

Core features More...

Go to the source code of this file.

Enumerations

enum  qualifier {
  packed_highp, packed_mediump, packed_lowp, highp = packed_highp,
  mediump = packed_mediump, lowp = packed_lowp, packed = packed_highp
}
 Qualify GLM types in term of alignment (packed, aligned) and precision in term of ULPs (lowp, mediump, highp) More...
 

Detailed Description

Core features

Definition in file qualifier.hpp.

Enumeration Type Documentation

◆ qualifier

enum qualifier

Qualify GLM types in term of alignment (packed, aligned) and precision in term of ULPs (lowp, mediump, highp)

Enumerator
packed_highp 

Typed data is tightly packed in memory and operations are executed with high precision in term of ULPs.

packed_mediump 

Typed data is tightly packed in memory and operations are executed with medium precision in term of ULPs for higher performance.

packed_lowp 

Typed data is tightly packed in memory and operations are executed with low precision in term of ULPs to maximize performance.

highp 

By default highp qualifier is also packed.

mediump 

By default mediump qualifier is also packed.

lowp 

By default lowp qualifier is also packed.

packed 

By default packed qualifier is also high precision.

Definition at line 11 of file qualifier.hpp.