Access captured bytes from the delegate controller
| 181 | |
| 182 | // Access captured bytes from the delegate controller |
| 183 | fl::span<const uint8_t> getCapturedBytes() const { |
| 184 | const DelegateType& delegate = this->getDelegate(); |
| 185 | const IData* idata = static_cast<const IData*>(&delegate); |
| 186 | return idata->data(); |
| 187 | } |
| 188 | |
| 189 | // Set gamma override (accesses protected mSettings directly) |
| 190 | void setGamma(float gamma) { this->mSettings.mGamma = gamma; } |
no test coverage detected