Browse Source

Trade: who did this?!

pull/525/head
Vladimír Vondruš 5 years ago
parent
commit
0d0e62c424
  1. 4
      src/Magnum/Trade/Data.h

4
src/Magnum/Trade/Data.h

@ -67,13 +67,13 @@ enum class DataFlag: UnsignedByte {
* made. * made.
* @m_since_latest * @m_since_latest
*/ */
ExternallyOwned = 3 << 0, ExternallyOwned = 1 << 3,
/** /**
* Data is mutable. If this flag is not set, the instance might be for * Data is mutable. If this flag is not set, the instance might be for
* example referencing a readonly memory-mapped file or a constant memory. * example referencing a readonly memory-mapped file or a constant memory.
*/ */
Mutable = 2 << 0 Mutable = 1 << 2
/** @todo owned by importer, owned by the GPU, ... */ /** @todo owned by importer, owned by the GPU, ... */
}; };

Loading…
Cancel
Save