Model is now able to push data into VBO

This commit is contained in:
2019-08-10 13:36:37 -05:00
parent 80a6389af4
commit 185d760a83
5 changed files with 38 additions and 26 deletions

View File

@@ -4,5 +4,5 @@ class IMICFPS
TextureCoordinate = Struct.new(:u, :v, :weight)
Point = Struct.new(:x, :y)
Color = Struct.new(:red, :green, :blue, :alpha)
Face = Struct.new(:vertices, :uvs, :normals, :material, :smoothing)
Face = Struct.new(:vertices, :uvs, :normals, :colors, :material, :smoothing)
end