| 741 | bool skipScreenshot; |
| 742 | |
| 743 | SurfaceControl(void *data = nullptr) |
| 744 | : data(data), |
| 745 | width(0), |
| 746 | height(0), |
| 747 | skipScreenshot(false) |
| 748 | { |
| 749 | } |
| 750 | SurfaceControl(void *data, int32_t width, int32_t height, bool skipScreenshot) |
| 751 | : data(data), |
| 752 | width(width), |
nothing calls this directly
no outgoing calls
no test coverage detected