CR changes

This commit is contained in:
SamGondelman 2016-08-10 10:35:18 -07:00
parent 676f4bdfcf
commit 9e20d92241
2 changed files with 3 additions and 3 deletions

View file

@ -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) {

View file

@ -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 {