Skip to content

Commit

Permalink
Merge pull request #2238 from gdlg/simulation_gluint_fix
Browse files Browse the repository at this point in the history
Use GLuint rather than size_t to represent OpenGL indices.
  • Loading branch information
SergioRAgostinho authored Mar 2, 2018
2 parents 52da14d + b68843b commit 366d8b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion simulation/include/pcl/simulation/model.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ namespace pcl
};

typedef std::vector<Vertex> Vertices;
typedef std::vector<size_t> Indices;
typedef std::vector<GLuint> Indices;

class Model
{
Expand Down

0 comments on commit 366d8b6

Please sign in to comment.