Giter Club home page Giter Club logo

vulkanresources's Introduction

This is a list of resources related to learning Vulkan that I've come across.

For those who know nothing:

Vulkan in 30 minutes

Khronous Videos

Vulkan API - Companion Guide by Harry Gould

API Without Secrets: Introduction to Vulkan by Pawel Lapinski Github

A Brief Overview of Vulkan API

https://www.toptal.com/api-developers/a-brief-overview-of-vulkan-api

Vulkan API Overview by Henri Tuhola.

Vulkan API Tutorial Video series by Niko Kauppi - Visual Studio/C++ Github Repository

Tutorial by José Henriques

GDC 2016 Presentation Video

Articles

Siggraph 2015 - An Overview of Next-Generation Graphics API

This is mainly filled with Powerpoint presentations :(.

http://nextgenapis.realtimerendering.com/

Sample Code

Language Bindings

More Resources

Companies support Vulkan

This links in this section help you understand the GPU in detail

A Trip Through the Pipeline by Fabian Giesen

Render Hell 2.0 by Simon Trümpler

Definitions (from Above)

  • Queue : A queue onto which you submit commands that the GPU reads and executes (asynchronously).
  • Semaphore : A GPU-GPU synchronization object.
  • Fence : A GPU-CPU synchronization object.
  • Buffer : Linear data for use on the device.
  • Image : Texture data (including dimensions & format) for use on the device.
  • Sampler : A collection of state required for a shader to sample textures (format, filtering etc).
  • Pipeline : A compiled collection of GPU state setting commands, shaders and other such data. (Almost) everything the GPU needs to get ready for rendering/compute work.
  • PipelineCache : A cache used by the pipeline compilation process. It is used to avoid unnecessary recompilations and can be saved and restored to and from disk to speed up subsequent compilations (for instance, in subsequent runs of the application).
  • Swapchain : A "ring buffer" of images offered by the platform's presentation engine (desktop compositors etc) on which the application can render and then submit for presentation.
  • Pool : A fast memory allocator specifically designed for objects of some specific type (descriptors, command buffers etc).

Source: https://www.reddit.com/r/vulkan/comments/4aveyh/tutorial_request_for_newbies_explain_the_things/d14551a

vulkanresources's People

Contributors

jcoder58 avatar

Watchers

James Cloos 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.