vulkan-hpp-tutorial/docs/index.md

58 lines
2.1 KiB
Markdown
Raw Permalink Normal View History

2025-06-25 15:42:18 +08:00
---
title: 首页
comments: true
---
2025-06-02 20:23:50 +08:00
# **首页**
2025-05-10 17:18:56 +08:00
2025-06-02 20:23:50 +08:00
## **教程简介**
2025-05-10 17:18:56 +08:00
2025-07-01 00:28:02 +08:00
本文档是 Vulkan 的入门教程,将介绍 Vulkan 图形与计算 API 的基础知识与实际应用。
2025-05-10 19:06:14 +08:00
2025-07-01 00:28:02 +08:00
文档以代码演示为主,你可以在 **[Vulkan Guide](https://docs.vulkan.org/guide/latest/index.html)** 等网站找到更详细的 Vulkan 规范和概念介绍。
教程将使用 C++ 编写代码C++23 标准,使用 Vulkan-SDK 内含的 Vulkan-Hpp 封装,充分利用 RAII 等现代 C++ 特性。
2025-08-05 11:49:39 +08:00
如果需要,可以降低至 C++17 或 C++20 标准进行学习。因为我们不会用到那些复杂的高级特性,且仅在“进阶”章节使用 C++20 模块功能。
2025-05-10 19:06:14 +08:00
> 如果你发现了文档的错误请点击右上角前往Github仓库提交 Issue 或 PR 。
2025-05-10 19:06:14 +08:00
2025-06-02 20:23:50 +08:00
## **代码说明**
2025-05-10 19:06:14 +08:00
2025-07-01 00:28:02 +08:00
教程不限操作系统、代码编辑器与 C++ 编译器,主要使用以下工具链:
2025-05-10 19:06:14 +08:00
- [Vulkan SDK](https://lunarg.com/vulkan-sdk/)
- [GLM](http://glm.g-truc.net/) 线性代数库
- [GLFW](http://www.glfw.org/) 窗口库
- [CMake](https://cmake.org/) 构建系统
- [vcpkg](https://vcpkg.io/) 依赖管理
2025-06-02 20:23:50 +08:00
## **其他说明**
2025-05-10 17:18:56 +08:00
2025-06-15 18:19:09 +08:00
Vulkan SDK 本身由 C 编写,因此具有更好的跨语言兼容性,可通过 C 接口供其他语言调用。
2025-05-10 17:18:56 +08:00
2025-06-15 18:19:09 +08:00
如果你更喜欢 C 风格的底层接口,或希望使用 Rust
2025-05-10 17:18:56 +08:00
- 基于底层 C 接口的 C++ 教程: [Vulkan-tutorial](https://vulkan-tutorial.com/)
2025-05-10 17:18:56 +08:00
- 基于 Vulkano 封装的 Rust 教程: [Vulkan-tutorial-rs](https://github.com/bwasty/vulkan-tutorial-rs)
2025-05-10 17:18:56 +08:00
## **致谢**
2025-05-10 17:46:05 +08:00
2025-07-01 00:28:02 +08:00
本文档内容参考了许多公开的资料以及课程,在此感谢:
- [Vulkan-Hpp](https://github.com/KhronosGroup/Vulkan-Hpp)
2025-05-10 17:18:56 +08:00
2025-07-01 00:28:02 +08:00
- [Vulkan-Guide](https://docs.vulkan.org/guide/latest/index.html)
2025-05-10 17:18:56 +08:00
- [Vulkan-Tutorial](https://github.com/Overv/VulkanTutorial)
- [EasyVulkan](https://easyvulkan.github.io/index.html)
2025-05-10 17:18:56 +08:00
2025-07-01 00:28:02 +08:00
- [GAMES101-现代计算机图形学入门\(闫令琪\)](https://www.bilibili.com/video/BV1X7411F744)
- [GAMES202-高质量实时渲染\(闫令琪\)](https://www.bilibili.com/video/BV1YK4y1T7yY)
- [GAMES104-现代游戏引擎:从入门到实践\(王希\)](https://games104.boomingtech.com/sc/)
2025-06-25 15:42:18 +08:00
---