diff options
author | Sebastian Park <SebPark03@gmail.com> | 2024-04-23 03:47:11 -0400 |
---|---|---|
committer | Sebastian Park <SebPark03@gmail.com> | 2024-04-23 03:47:11 -0400 |
commit | 1a26bf6678822bc73d3eb0eb754fd4a01d25573f (patch) | |
tree | fb8c402b129f58d675705daae852a57377bc3eda /src/graphics/shape.h | |
parent | afea13471ff50d0c8500210c0a15fcf686a77832 (diff) |
Add ground plane stuff to shape class instead of in main.
Diffstat (limited to 'src/graphics/shape.h')
-rw-r--r-- | src/graphics/shape.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/graphics/shape.h b/src/graphics/shape.h index b909606..d8ea0c1 100644 --- a/src/graphics/shape.h +++ b/src/graphics/shape.h @@ -51,8 +51,8 @@ private: GLuint m_surfaceVao; GLuint m_surfaceVbo; GLuint m_surfaceIbo; - GLuint ocean_floor_texture; - QImage ocean_floor_image; + GLuint m_ground_texture; + QImage m_ground_image; unsigned int m_numSurfaceVertices; unsigned int m_verticesSize; |