Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/katebea/imgui-vulkan-setup
Simple CMake setup for ImGui using Vulkan and GLFW
https://github.com/katebea/imgui-vulkan-setup
Last synced: about 5 hours ago
JSON representation
Simple CMake setup for ImGui using Vulkan and GLFW
- Host: GitHub
- URL: https://github.com/katebea/imgui-vulkan-setup
- Owner: kateBea
- License: mit
- Created: 2024-03-31T20:38:07.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-04-07T02:15:05.000Z (7 months ago)
- Last Synced: 2024-04-07T13:25:57.038Z (7 months ago)
- Language: C++
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ImGui Vulkan Example
This is another project from my spare time about setting up a Vulkan application with Dear ImGui integration, still a work in progress.
## Features
- Vulkan integration: Sets up a Vulkan rendering context for the application.
- ImGui integration: Integrate ImGui for creating user interfaces within the Vulkan application.## Prerequisites
Before getting started, ensure you have the following prerequisites installed:
- CMake (version 3.18 or higher)
- Vulkan SDK
- A C++ 20 capable compiler## Getting Started
To get started with Vulkan ImGui Starter, follow these steps:
1. Clone this repository to your local machine:
```bash
git clone https://github.com/your_username/vulkan-imgui-starter.git
```2. Build the project using CMake:
```bash
cd ImGui-Vulkan-Setup
mkdir build && cd build
cmake --build .
```3. Run the executable (might need to navigate to the output folder on windows):
```bash
./ImGui-Vulkan-Setup
```