mirror of
https://github.com/SFML/SFML.git
synced 2024-11-25 04:41:05 +08:00
Fixed minor warnings after the last commit
git-svn-id: https://sfml.svn.sourceforge.net/svnroot/sfml/branches/sfml2@1298 4e206d99-4929-0410-ac5d-dfc041789085
This commit is contained in:
parent
6bd654b854
commit
10296333be
@ -349,8 +349,8 @@ private :
|
|||||||
BatchArray myBatches; ///< Blocks of geometry to render
|
BatchArray myBatches; ///< Blocks of geometry to render
|
||||||
VertexArray myVertices; ///< Geometry to be rendered
|
VertexArray myVertices; ///< Geometry to be rendered
|
||||||
IndexArray myIndices; ///< Indices defining the triangles to be rendered
|
IndexArray myIndices; ///< Indices defining the triangles to be rendered
|
||||||
std::size_t myCurrentVertexCount; ///< Current number of vertices in the vertex array
|
Uint32 myCurrentVertexCount; ///< Current number of vertices in the vertex array
|
||||||
std::size_t myCurrentIndexCount; ///< Current number of indices in the index array
|
Uint32 myCurrentIndexCount; ///< Current number of indices in the index array
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace sf
|
} // namespace sf
|
||||||
|
@ -105,8 +105,8 @@ public :
|
|||||||
////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////
|
||||||
GLuint myVertexBuffer; ///< Identifier of the vertex buffer
|
GLuint myVertexBuffer; ///< Identifier of the vertex buffer
|
||||||
GLuint myIndexBuffer; ///< Identifier of the index buffer
|
GLuint myIndexBuffer; ///< Identifier of the index buffer
|
||||||
Uint32 myVertexBufferSize; ///< Size of the vertex buffer
|
std::size_t myVertexBufferSize; ///< Size of the vertex buffer
|
||||||
Uint32 myIndexBufferSize; ///< Size of the index buffer
|
std::size_t myIndexBufferSize; ///< Size of the index buffer
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace priv
|
} // namespace priv
|
||||||
|
Loading…
Reference in New Issue
Block a user