Giter Site home page Giter Site logo

vktut's Introduction

Shabi's Vulkan Tutorials

Travis-CI: Build Status

This is a repository of tutorials on Vulkan. It starts with the basics, enumerating your GPUs, allocating memory and getting computation done. It then moves on to actually displaying things and using shaders. Along the way, some of the optional Vulkan layers are explored.

Each tutorial may use functions implemented in a previous tutorial. The functions are thus named as tutX_*() so that it would be immediately obvious which tutorial you should refer to, if you don't remember what that function does.

These tutorials were developed in Linux, and I have no intention of trying them on Windows. Feel free to send a pull request if they needed tweaks to run on that. You would need the following external libraries:

  • Vulkan, of course
  • SDL2
  • X11-xcb

The tutorials are source code themselves, with enough comments in them to explain how things are done and/or why. I strongly recommend reading the Vulkan specifications alongside the tutorials. It is well-written and easy to grasp. Also note that Vulkan is not for the faint of heart. I expect you are not struggling with reading C code and have some understanding of computer graphics and operating systems.

The main.c of each tutorial glues together the functionalities implemented in the tut*.c files, and may include uninteresting things like printing out information. The core usage of Vulkan is usually in tut[0-9]\+.c files, with tut[0-9]\+_render.c files containing utilities useful for rendering based on top of the core functions.

Build and Execution

This project uses autotools. If you have received the project as a release tarball, you can go through the usual procedure:

mkdir build && cd build
../configure --enable-silent-rules
make -j

If your Vulkan SDK installation is not in the standard locations, you would need to have the VULKAN_SDK variable set, for example set it in your environment:

export VULKAN_SDK=/path/to/vulkan/arch

Or run configure file with this environment:

VULKAN_SDK=/path/to/vulkan/arch ../configure

If you are building from source, you would need autotools installed as well as autoconf-archive and do the following step beforehand:

autoreconf -i

Each tutorial will have an executable in its own directory that you can run.


Disclaimer: I am writing these tutorials as I am learning Vulkan myself. I am in no way an expert in computer graphics and my own knowledge of OpenGL barely passes 1.2. Please do not consider these tutorials as "best practices" in Vulkan. They are intended to merely ease you in Vulkan, getting you familiar with the API. How to best utilize the API is beyond me at this point.

vktut's People

Contributors

shabbyx avatar

Watchers

Dren Kajmakchi avatar boot - dud3 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.