Skip to content

Commit

Permalink
add prefix to literal
Browse files Browse the repository at this point in the history
  • Loading branch information
yknishidate committed Aug 15, 2024
1 parent 863a45f commit 46fef8f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/reactive/Scene/Mesh.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ struct CubeLineMeshCreateInfo {
};

struct PlaneMeshCreateInfo {
float width = 1;
float height = 1;
uint32_t widthSegments = 1;
uint32_t heightSegments = 1;
float width = 1.0f;
float height = 1.0f;
uint32_t widthSegments = 1u;
uint32_t heightSegments = 1u;
MeshUsage usage = MeshUsage::Graphics;
std::string name = "Plane";
};
Expand Down

0 comments on commit 46fef8f

Please sign in to comment.