{"id":26903427,"url":"https://github.com/jtlee98/vulkan-snippets-vscode","last_synced_at":"2026-04-14T00:03:41.735Z","repository":{"id":285490695,"uuid":"958313137","full_name":"JTLee98/vulkan-snippets-vscode","owner":"JTLee98","description":"vscode extension for generating vulkan code snippets in C++","archived":false,"fork":false,"pushed_at":"2025-04-01T02:07:46.000Z","size":2,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-01T03:23:32.775Z","etag":null,"topics":["cpp","python","vscode-extension","vulkan-api"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/JTLee98.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2025-04-01T01:53:30.000Z","updated_at":"2025-04-01T03:22:02.000Z","dependencies_parsed_at":"2025-04-01T03:23:41.267Z","dependency_job_id":"ba3aadf2-c51e-4f9f-8b2e-7740bd4c70d6","html_url":"https://github.com/JTLee98/vulkan-snippets-vscode","commit_stats":null,"previous_names":["jtlee98/vulkan-snippets-vscode"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JTLee98%2Fvulkan-snippets-vscode","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JTLee98%2Fvulkan-snippets-vscode/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JTLee98%2Fvulkan-snippets-vscode/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/JTLee98%2Fvulkan-snippets-vscode/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/JTLee98","download_url":"https://codeload.github.com/JTLee98/vulkan-snippets-vscode/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246622932,"owners_count":20807232,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["cpp","python","vscode-extension","vulkan-api"],"created_at":"2025-04-01T10:28:22.472Z","updated_at":"2026-04-14T00:03:41.701Z","avatar_url":"https://github.com/JTLee98.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Vulkan C++ Code Snippet Generator Extension for VS Code\n\nwork in progress\n\n## Planned Features\n### Struct Based Parameters Snippets:\n\nvulkan has a ton of struct based parameter design, i.e. arguments are packed into dedicated structs for each function. \n\nFor example, `vkCreateInstance()` takes a single dedicated `VkInstanceCreateInfo` struct type as a parameter and this struct contains the actual arguments for the function:\n```cpp\n// package the arguments into a VkInstanceCreateInfo struct\nVkInstanceCreateInfo createInfo = {\n    .sType = VK_STRUCTURE_TYPE_INSTANCE_CREATE_INFO;\n    .pApplicationInfo = \u0026appInfo;\n    .enabledExtensionCount = 3;\n    .ppEnabledExtensionNames = extnames;\n    .enabledLayerCount = 5;\n    .ppEnabledLayerNames = layernames;\n};\n// pass the struct into the vkCreateInstance() api call\nVkInstance instance;\nvkCreateInstance(\u0026createInfo, nullptr, \u0026instance);\n```\n\nThis extension will generate a code snippet of the necessary parameter struct (e.g. `VkInstanceCreateInfo`) when it detects the vulkan function that requires it (e.g. `vkCreateInstance()`).\n\n### other useful features\nTBA!\n\n## Contributions\n\ncontributions are welcome!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjtlee98%2Fvulkan-snippets-vscode","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjtlee98%2Fvulkan-snippets-vscode","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjtlee98%2Fvulkan-snippets-vscode/lists"}