mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
CR changes
This commit is contained in:
parent
676f4bdfcf
commit
9e20d92241
2 changed files with 3 additions and 3 deletions
|
@ -58,7 +58,7 @@ public:
|
|||
Slot(const Slot& s) : _name(s._name), _location(s._location), _element(s._element), _resourceType(s._resourceType), _size(s._size) {}
|
||||
Slot(Slot&& s) : _name(s._name), _location(s._location), _element(s._element), _resourceType(s._resourceType), _size(s._size) {}
|
||||
Slot(const std::string& name, int32 location, const Element& element, uint16 resourceType = Resource::BUFFER, uint32 size = 0) :
|
||||
_name(name), _location(location), _element(element), _resourceType(resourceType), _size(size) {}
|
||||
_name(name), _location(location), _element(element), _resourceType(resourceType), _size(size) {}
|
||||
Slot(const std::string& name) : _name(name) {}
|
||||
|
||||
Slot& operator= (const Slot& s) {
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
// See the accompanying file LICENSE or http://www.apache.org/licenses/LICENSE-2.0.html
|
||||
//
|
||||
|
||||
#include <qmath.h>
|
||||
|
||||
#include "animdebugdraw_vert.h"
|
||||
#include "animdebugdraw_frag.h"
|
||||
#include <gpu/Batch.h>
|
||||
|
@ -15,8 +17,6 @@
|
|||
#include "GLMHelpers.h"
|
||||
#include "DebugDraw.h"
|
||||
|
||||
#include <qmath.h>
|
||||
|
||||
#include "AnimDebugDraw.h"
|
||||
|
||||
struct Vertex {
|
||||
|
|
Loading…
Reference in a new issue