Changeset 47 in flair-dev for trunk/include/FlairCore
- Timestamp:
- Jan 19, 2017, 3:06:46 PM (8 years ago)
- Location:
- trunk/include/FlairCore
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/FlairCore/Semaphore.h
r42 r47 51 51 * 52 52 * Lock the semaphore. 53 * 53 * 54 * \param timeout The timeout, in nanoseconds. 54 55 */ 55 void GetSemaphore(void) const;56 bool GetSemaphore(Time timeout = TIME_INFINITE) const; 56 57 57 58 /*! … … 61 62 * 62 63 */ 63 voidReleaseSemaphore(void) const;64 bool ReleaseSemaphore(void) const; 64 65 65 66 private: -
trunk/include/FlairCore/cvimage.h
r13 r47 39 39 UYVY, /*!< UYVY 16 bits */ 40 40 BGR, /*!< BGR 24 bits */ 41 G RAY, /*!< gray 8 bits */41 Gray, /*!< gray 8 bits */ 42 42 }; 43 43 Type(uint16_t _width, uint16_t _height, Format _format) … … 47 47 size_t pixelSize; 48 48 switch (format) { 49 case Format::G RAY:49 case Format::Gray: 50 50 pixelSize = 1; 51 51 break;
Note:
See TracChangeset
for help on using the changeset viewer.