| 56 | FASTLED_FORCE_INLINE Canvas(fl::shared_ptr<RGB_T> ptr, int w, int h) : mImpl(ptr, w, h) {} |
| 57 | |
| 58 | FASTLED_FORCE_INLINE int size() const { return mImpl.size(); } |
| 59 | FASTLED_FORCE_INLINE RGB_T& at(int x, int y) { return mImpl.at(x, y); } |
| 60 | FASTLED_FORCE_INLINE const RGB_T& at(int x, int y) const { return mImpl.at(x, y); } |
| 61 | FASTLED_FORCE_INLINE bool has(int x, int y) const { return mImpl.has(x, y); } |
no outgoing calls
no test coverage detected