Updates for bazel on windows.

This commit is contained in:
2023-05-17 14:26:26 -07:00
parent a8c0ef05fb
commit 9e8f04e9b4
84 changed files with 2789 additions and 5836 deletions

View File

@@ -17,16 +17,16 @@
* Free Software Foundation, Inc., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#ifndef OpenArena__geometry_h__
#define OpenArena__geometry_h__
#if defined HAVE_CONFIG_H
// clang-format off
#include "config.h"
#endif
#include "myglTexture.h"
#include "vector.h"
// clang-format on
namespace OpenArena {
class Vertex {
public:
@@ -34,25 +34,12 @@ class Vertex {
Vec2f textureCoordinates;
};
/*!
* \brief
* Write brief comment for Triangle here.
*
* Write detailed description for Triangle here.
*
* \remarks
* Write remarks for Triangle here.
*
* \see
* Separate items with the '|' character.
*/
class Triangle {
public:
Texture texture;
Triangle();
Texture& texture;
uint32_t texID;
Vertex vertecies[3];
// Vec3f vertecies[3];
// Vec2f texCoords[3];
Vec3f normal;
};