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: 2 months 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 (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-10-23T05:44:20.000Z (7 months ago)
- Last Synced: 2024-11-17T01:22:18.716Z (6 months ago)
- Language: C++
- Size: 15.6 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
```