Renamed bx::init::* tags.

This commit is contained in:
Бранимир Караџић
2023-04-22 22:22:45 -07:00
parent a3e68cd9b7
commit e9d1e3d0fe
10 changed files with 36 additions and 36 deletions

View File

@@ -601,7 +601,7 @@ void initA(Shape& _outShape, Shape::Type::Enum _type, bx::Vec3 _pos)
case Shape::Type::Plane:
{
bx::Plane plane(bx::init::None);
bx::Plane plane(bx::InitNone);
bx::calcPlane(plane, bx::normalize(bx::Vec3{0.0f, 1.0f, 1.0f}), _pos);
_outShape = Shape(plane);
}
@@ -688,7 +688,7 @@ void initB(Shape& _outShape, Shape::Type::Enum _type, bx::Vec3 _pos)
case Shape::Type::Plane:
{
bx::Plane plane(bx::init::None);
bx::Plane plane(bx::InitNone);
bx::calcPlane(plane, bx::normalize(bx::Vec3{1.0f, 1.0f, 0.0f}), _pos);
_outShape = Shape(plane);
}
@@ -1001,7 +1001,7 @@ public:
const bx::Vec3 normal = { 0.0f, 1.0f, 0.0f };
const bx::Vec3 pos = { 0.0f, -2.0f, 0.0f };
bx::Plane plane(bx::init::None);
bx::Plane plane(bx::InitNone);
bx::calcPlane(plane, normal, pos);
dde.setColor(false