remove another RefreshCS thing from the API

pull/14/head
cosmonaut 2021-01-21 19:55:09 -08:00
parent db44c3e37a
commit 1e77ad2cb4
1 changed files with 2 additions and 2 deletions

View File

@ -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
);
}