| 76 | private: |
| 77 | struct GradientTexture { |
| 78 | GradientTexture(std::shared_ptr<TextureProxy> textureProxy, BytesKey gradientKey) |
| 79 | : textureProxy(std::move(textureProxy)), gradientKey(std::move(gradientKey)) { |
| 80 | } |
| 81 | |
| 82 | std::shared_ptr<TextureProxy> textureProxy = nullptr; |
| 83 | BytesKey gradientKey = {}; |
nothing calls this directly
no outgoing calls
no test coverage detected