From 88107e4001a592b1ce17f7c07a99ea838cbfcaa9 Mon Sep 17 00:00:00 2001 From: chloekek <50083900+chloekek@users.noreply.github.com> Date: Sat, 8 Jul 2023 14:14:54 +0200 Subject: [PATCH] Correct names of ID3D11Device1::Create{Blend,Rasterizer}State1 methods --- src/um/d3d11_1.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/um/d3d11_1.rs b/src/um/d3d11_1.rs index 7b0b46ec2..a9bed67f7 100644 --- a/src/um/d3d11_1.rs +++ b/src/um/d3d11_1.rs @@ -442,11 +442,11 @@ interface ID3D11Device1(ID3D11Device1Vtbl): ID3D11Device(ID3D11DeviceVtbl) { ContextFlags: UINT, ppDeferredContext: *mut *mut ID3D11DeviceContext1, ) -> HRESULT, - fn CreateBlendState( + fn CreateBlendState1( pBlendStateDesc: *const D3D11_BLEND_DESC1, ppBlendState: *mut *mut ID3D11BlendState1, ) -> HRESULT, - fn CreateRasterizerState( + fn CreateRasterizerState1( pRasterizerDesc: *const D3D11_RASTERIZER_DESC1, ppRasterizerState: *mut *mut ID3D11RasterizerState1, ) -> HRESULT,