Access captured bytes from the delegate controller
| 210 | |
| 211 | // Access captured bytes from the delegate controller |
| 212 | fl::span<const uint8_t> getCapturedBytes() const { |
| 213 | const DelegateType& delegate = this->getDelegate(); |
| 214 | const IData* idata = static_cast<const IData*>(&delegate); |
| 215 | return idata->data(); |
| 216 | } |
| 217 | |
| 218 | // Set gamma override (accesses protected mSettings directly) |
| 219 | void setGamma(float gamma) { this->mSettings.mGamma = gamma; } |