{"id":19782723,"url":"https://github.com/minegame159/imgui-vulkan-beef","last_synced_at":"2026-03-05T13:05:02.613Z","repository":{"id":119069262,"uuid":"459278148","full_name":"MineGame159/imgui-vulkan-beef","owner":"MineGame159","description":"Vulkan backend for Dear ImGui in Beef","archived":false,"fork":false,"pushed_at":"2022-02-14T18:39:25.000Z","size":19,"stargazers_count":4,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-02-28T13:03:54.716Z","etag":null,"topics":["beef","beef-language","beef-programming-language","imgui","vulkan"],"latest_commit_sha":null,"homepage":"","language":"Beef","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MineGame159.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2022-02-14T18:25:59.000Z","updated_at":"2025-01-07T02:00:24.000Z","dependencies_parsed_at":"2023-04-14T06:32:32.363Z","dependency_job_id":null,"html_url":"https://github.com/MineGame159/imgui-vulkan-beef","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/MineGame159/imgui-vulkan-beef","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineGame159%2Fimgui-vulkan-beef","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineGame159%2Fimgui-vulkan-beef/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineGame159%2Fimgui-vulkan-beef/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineGame159%2Fimgui-vulkan-beef/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MineGame159","download_url":"https://codeload.github.com/MineGame159/imgui-vulkan-beef/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MineGame159%2Fimgui-vulkan-beef/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30127250,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-05T12:40:50.676Z","status":"ssl_error","status_checked_at":"2026-03-05T12:39:32.209Z","response_time":93,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["beef","beef-language","beef-programming-language","imgui","vulkan"],"created_at":"2024-11-12T06:05:56.629Z","updated_at":"2026-03-05T13:05:02.599Z","avatar_url":"https://github.com/MineGame159.png","language":"Beef","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vulkan backend for Dear ImGui in Beef\nPorted from the [official Vulkan backend](https://github.com/ocornut/imgui/blob/master/backends/imgui_impl_vulkan.h) based on commit [5854da10e664312e51acec618267d06b1294ac0b](https://github.com/ocornut/imgui/tree/5854da10e664312e51acec618267d06b1294ac0b).\n\n## Usage\nClone the project into BeefLibs, then in the IDE, right click your workspace and go Add From Installed \u003e ImGuiImplVulkan.  \nRequires the [Bulkan](https://github.com/jayrulez/Bulkan) library.  \n  \nExample:\n```beef\nusing ImGui;\n\nnamespace Foo {\n    class Bar {\n        public static void Main() {\n            ImGuiImplVulkan.InitInfo info = .() {\n                // Fill with Vulkan data\n            };\n\n            ImGuiImplVulkan.Init(\u0026info, renderPass);\n\n            // Upload fonts\n            {\n                // Begin command buffer\n                ImGuiImplVulkan.CreateFontsTexture(commandBuffer);\n                // End command buffer\n\n                VkSubmitInfo submitInfo = .() {\n                    commandBufferCount = 1,\n                    pCommandBuffers = commandBuffer\n                };\n                vkQueueSubmit(queue, 1, \u0026submitInfo, .Null);\n                vkDeviceWaitIdle(device);\n\n                ImGuiImplVulkan.DestroyFontUploadObjects();\n            }\n\n            ...\n\n            while (true) {\n                ...\n                ImGuiImplVulkan.NewFrame();\n                ...\n                ImGui.Render();\n                ImGuiImplVulkan.RenderDrawData(ImGui.GetDrawData(), commandBuffer);\n                ...\n            }\n\n            ...\n\n            ImGuiImplVulkan.Shutdown();\n        }\n    }\n}\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminegame159%2Fimgui-vulkan-beef","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fminegame159%2Fimgui-vulkan-beef","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fminegame159%2Fimgui-vulkan-beef/lists"}