| 57 | (*this.*setPixelFunc)(x, y, c); |
| 58 | } |
| 59 | glm::vec4 getPixel(int x, int y) const |
| 60 | { |
| 61 | return ((*this.*getPixelFunc)(x, y)); |
| 62 | } |
| 63 | private: |
| 64 | using setPixel_t = void(Bitmap::*)(int, int, const glm::vec4&); |
| 65 | using getPixel_t = glm::vec4(Bitmap::*)(int, int) const; |
no outgoing calls
no test coverage detected