1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-21 06:09:42 +00:00

Make some RipplesSurface members private

This commit is contained in:
elsid 2024-02-18 22:30:51 +01:00
parent dc5371d157
commit 56e69cf7a2
No known key found for this signature in database
GPG key ID: 4DE04C198CBA7625

View file

@ -50,6 +50,10 @@ namespace MWRender
// e.g. texel to cell unit ratio
static constexpr float mWorldScaleFactor = 2.5;
private:
void setupFragmentPipeline();
void setupComputePipeline();
Resource::ResourceSystem* mResourceSystem;
struct State
@ -63,10 +67,6 @@ namespace MWRender
std::array<State, 2> mState;
private:
void setupFragmentPipeline();
void setupComputePipeline();
osg::Vec2f mCurrentPlayerPos;
osg::Vec2f mLastPlayerPos;