From 115608b2a5d712a807980c9a476a7a904be1d575 Mon Sep 17 00:00:00 2001 From: Harrison Date: Mon, 17 Feb 2020 02:27:14 -0500 Subject: [PATCH] Removed state tracking for VertexBufferHandle due to potential overlapping states. --- RecrownedGTK/Graphics/VertexBufferHandle.cs | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/RecrownedGTK/Graphics/VertexBufferHandle.cs b/RecrownedGTK/Graphics/VertexBufferHandle.cs index 6f856ad..7680250 100644 --- a/RecrownedGTK/Graphics/VertexBufferHandle.cs +++ b/RecrownedGTK/Graphics/VertexBufferHandle.cs @@ -4,27 +4,18 @@ namespace RecrownedGTK.Graphics { public class VertexBufferHandle : IDisposable { private bool disposed; private int handle; - public bool Bound { - get; - private set; - } public VertexBufferHandle() { handle = GL.GenBuffer(); } public void Bind() { - Bound = true; GL.BindBuffer(BufferTarget.ArrayBuffer, handle); } public void Unbind() { - Bound = false; + GL.BindBuffer(BufferTarget.ArrayBuffer, 0); } - public void Buffer(float[] vertices, BufferUsageHint hint = BufferUsageHint.StaticDraw) { - if (Bound) { - GL.BufferData(BufferTarget.ArrayBuffer, vertices.Length * sizeof(float), vertices, hint); - return; - } - throw new InvalidOperationException("Buffer is not bound."); + public void Flush(float[] vertices, BufferUsageHint hint = BufferUsageHint.StaticDraw) { + GL.BufferData(BufferTarget.ArrayBuffer, vertices.Length * sizeof(float), vertices, hint); } public void Dispose() { Dispose(true);