summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/bgfx/examples/common/ps/particle_system.h
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/bgfx/examples/common/ps/particle_system.h')
-rw-r--r--3rdparty/bgfx/examples/common/ps/particle_system.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/3rdparty/bgfx/examples/common/ps/particle_system.h b/3rdparty/bgfx/examples/common/ps/particle_system.h
index 36659ef5dad..38c124ed975 100644
--- a/3rdparty/bgfx/examples/common/ps/particle_system.h
+++ b/3rdparty/bgfx/examples/common/ps/particle_system.h
@@ -1,17 +1,16 @@
/*
- * Copyright 2011-2018 Branimir Karadzic. All rights reserved.
- * License: https://github.com/bkaradzic/bgfx#license-bsd-2-clause
+ * Copyright 2011-2022 Branimir Karadzic. All rights reserved.
+ * License: https://github.com/bkaradzic/bgfx/blob/master/LICENSE
*/
#ifndef PARTICLE_SYSTEM_H_HEADER_GUARD
#define PARTICLE_SYSTEM_H_HEADER_GUARD
#include <bx/allocator.h>
+#include <bx/bounds.h>
#include <bx/easing.h>
#include <bx/rng.h>
-#include "../bounds.h"
-
struct EmitterHandle { uint16_t idx; };
struct EmitterSpriteHandle { uint16_t idx; };
@@ -92,7 +91,7 @@ EmitterHandle psCreateEmitter(EmitterShape::Enum _shape, EmitterDirection::Enum
void psUpdateEmitter(EmitterHandle _handle, const EmitterUniforms* _uniforms = NULL);
///
-void psGetAabb(EmitterHandle _handle, Aabb& _outAabb);
+void psGetAabb(EmitterHandle _handle, bx::Aabb& _outAabb);
///
void psDestroyEmitter(EmitterHandle _handle);