James Yarwood
James Yarwood
As seen here: https://github.com/dotnet/Silk.NET/blob/23f9bd4d67ad21c69fbd69cc38a62fb2c0ec3927/src/Microsoft/Silk.NET.XInput/XInput.cs#L13 `Silk.NET.XInput.XInput.GetApi()` Contains `throw new NotImplementedException()`. EDIT: After a bit of testing and poking around at how APIs are loaded elsewhere in Silk.NET, I found a temporary...
`ID3D11DeviceContext::RSSetScissorRects()` expects rectangles to be structured as `left, top, right, bottom` integers, but SILK.NET expects `Silk.NET.Maths.Rectangle` to be passed in, which has a structure of `left, top, width, height` via...
Content handles should be populated with default assets (if available) upon instantiation. This allows for a usable asset to be provided, while the requested one is loaded/retrieved asynchronously. Allow allow...
Add support for OpenGL: - [ ] OpenGL ES: - [ ] Android - [ ] iOS - [ ] OpenGL 4.x: - [ ] Windows - [ ] Mac...
Add DirectX 12.x support. This is windows (and later, Xbox) only: Core features: - [x] #159 - [x] #160 - [x] #161 - [x] #162 - [x] #163 - [x]...
Add Vulkan support: - [ ] Windows - [ ] Mac - [ ] Linux - [ ] iOS - [ ] Android Core features: - [x] #109 - [x]...
Implement support for, and make use of, deferred DirectX 11 contexts. These allow GPU commands to be queued up by multiple threads in advance of them being sent to the...