Format more engine code

This commit is contained in:
Wojtek Figat
2022-06-14 20:26:33 +02:00
parent b49e5e9984
commit 2bf6fac77d
37 changed files with 120 additions and 304 deletions

View File

@@ -78,7 +78,6 @@ struct ParticleAttribute
class ParticleLayout
{
public:
/// <summary>
/// The total particle data stride size (in bytes). Defines the required memory amount for a single particle.
/// </summary>
@@ -90,7 +89,6 @@ public:
Array<ParticleAttribute, FixedAllocation<PARTICLE_ATTRIBUTES_MAX_COUNT>> Attributes;
public:
/// <summary>
/// Clears the layout data.
/// </summary>
@@ -217,7 +215,6 @@ public:
class FLAXENGINE_API ParticleBuffer
{
public:
/// <summary>
/// The emitter graph version (cached on Init). Used to discard pooled buffers that has been created for older emitter graph.
/// </summary>
@@ -331,7 +328,6 @@ public:
} GPU;
public:
/// <summary>
/// Initializes a new instance of the <see cref="ParticleBuffer"/> class.
/// </summary>
@@ -384,12 +380,10 @@ public:
struct ParticleBufferCPUDataAccessorBase
{
protected:
ParticleBuffer* _buffer;
int32 _offset;
public:
ParticleBufferCPUDataAccessorBase()
: _buffer(nullptr)
, _offset(-1)
@@ -403,7 +397,6 @@ public:
}
public:
FORCE_INLINE bool IsValid() const
{
return _buffer != nullptr && _offset != -1;
@@ -414,7 +407,6 @@ template<typename T>
struct ParticleBufferCPUDataAccessor : ParticleBufferCPUDataAccessorBase
{
public:
ParticleBufferCPUDataAccessor<T>()
{
}
@@ -425,7 +417,6 @@ public:
}
public:
FORCE_INLINE T operator[](int32 index) const
{
return Get(index);