https://github.com/wardbenjamin/vkglfw3
Vulkan-focused C# 7 (.NET Standard 2.0) object-oriented window/input system based on GLFW3
https://github.com/wardbenjamin/vkglfw3
Last synced: 12 months ago
JSON representation
Vulkan-focused C# 7 (.NET Standard 2.0) object-oriented window/input system based on GLFW3
- Host: GitHub
- URL: https://github.com/wardbenjamin/vkglfw3
- Owner: WardBenjamin
- License: mit
- Created: 2018-06-19T02:00:29.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-20T00:48:22.000Z (almost 8 years ago)
- Last Synced: 2025-05-14T10:01:44.455Z (about 1 year ago)
- Language: C#
- Homepage:
- Size: 474 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# VkGLFW3 0.3.0
Vulkan-focused C# 7 (.NET Standard 2.0) object-oriented window/input system based on GLFW3
The aim of this project is to provide minimal, abstracted GLFW3 bindings usable with Vulkan, specifically designed for good interop with [VulkanCore](https://github.com/discosultan/VulkanCore). The focus here is to abstract away as many native GLFW calls as possible while not detracting from the speed advantages and familiarities of the library. As such, most functionality is wrapped by the `Window` class, with Vulkan-specific functionality and `Init` and `Terminate` calls being the only exceptions.
This library makes extensive use of C# 7 features, and targets .NET Standard 2.0, compatible with .NET Core 2.0+, .NET Framework 4.6.1+, and
Mono 5.4+ runtimes as per the [.NET Implementation Support Table](https://docs.microsoft.com/en-us/dotnet/standard/net-standard)
This library only supports x64 platforms! Windows is currently fully supported (Linux and OSX should work but are untested). Make sure to copy the relevent `glfw` library file to your output directory - a common way to do so is by including the following line in your console application CSproj file:
```
```
Documentation is available on [Github Pages](https://wardbenjamin.github.io/VkGLFW3/annotated.html), but here's a small minimal feature example:
```cs
class Program
{
static void Main(string[] args)
{
VkGlfw.Init();
var window = new Window(800, 600, "VkGLFW3 Demo");
Console.WriteLine("Window size: {0}", window.GetSize());
Console.WriteLine("Window title: {0}", window.Title);
Console.WriteLine("Vulkan supported: {0}", VkGlfw.VulkanSupported);
Console.WriteLine("Required Vulkan instance extensions: {0}", string.Join(", ", VkGlfw.RequiredInstanceExtensions));
window.Title = "Test";
while (!window.ShouldClose)
{
window.PollEvents();
}
window.Dispose();
VkGlfw.Terminate();
}
}
```
MIT License (see LICENSE.md)
Copyright (c) 2018 Benjamin Ward