OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:TILED_FLAG
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/3rdparty/openexr/IlmImf/
ImfVersion.h
85
const int
TILED_FLAG
= 0x00000200; // File is tiled
95
const int ALL_FLAGS =
TILED_FLAG
| LONG_NAMES_FLAG;
102
inline bool isTiled (int version) {return !!(version &
TILED_FLAG
);}
103
inline int makeTiled (int version) {return version |
TILED_FLAG
;}
104
inline int makeNotTiled (int version) {return version & ~
TILED_FLAG
;}
ImfHeader.cpp
895
version |=
TILED_FLAG
;
Completed in 110 milliseconds