haxpor / sdl2-cimgui-demo

Demo project SDL2 + cimgui + opengl3 using either gl3w or glew
MIT License
20 stars 1 forks source link

Would this method work for any configuration? #1

Closed mwagg22 closed 4 years ago

mwagg22 commented 4 years ago

Following your method in your blog this should work for vulkan with sdl as well? I just have to configure the sdl header , build dll and link this bad boy to my main project.

haxpor commented 4 years ago

Yes, the similar approach should work the same although I didn't test with vulkan. I'm looking at SDL + Vulkan example of imgui, it includes both implementation files of SDL and Vulkan (similarly to what I have done in this repo).

Just make sure we bring in all requires implementation files, you should be fine :)

mwagg22 commented 4 years ago

Cool thanks!!