From 1e77ad2cb4cc417f9f6de938958c3078501f792c Mon Sep 17 00:00:00 2001 From: cosmonaut Date: Thu, 21 Jan 2021 19:55:09 -0800 Subject: [PATCH] remove another RefreshCS thing from the API --- src/Graphics/CommandBuffer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Graphics/CommandBuffer.cs b/src/Graphics/CommandBuffer.cs index 097f09d..b0ff587 100644 --- a/src/Graphics/CommandBuffer.cs +++ b/src/Graphics/CommandBuffer.cs @@ -189,14 +189,14 @@ namespace MoonWorks.Graphics public void BindIndexBuffer( Buffer indexBuffer, uint offset, - Refresh.IndexElementSize indexElementSize + IndexElementSize indexElementSize ) { Refresh.Refresh_BindIndexBuffer( Device.Handle, Handle, indexBuffer.Handle, offset, - indexElementSize + (Refresh.IndexElementSize) indexElementSize ); }