tree: 42d51e0bd35ceea0f3a43da8573b7493492c3e17 [path history] [tgz]
  1. Demos.xcworkspace/
  2. LunarG-VulkanSamples/
  3. README.md
Demos/README.md

#MoltenVK Demo Projects

Copyright (c) 2014-2019 The Brenwill Workshop Ltd.

This document is written in Markdown format. For best results, use a Markdown reader.

Table of Contents

LunarG Vulkan Samples

LunarG, who have been involved in Vulkan development from the beginning, and are one of the original developers of Vulkan tools and SDK's, provides a suite of demo apps, that demonstrate a wide range of basic Vulkan features.

These demo apps are included in MoltenVK, and can be found in the LunarG-VulkanSamples folder of this Demos folder, and in the LunarG-VulkanSamples group in the Xcode Project Navigator in the Demos.xcworkspace Xcode workspace.

Cube

A basic textured cube that spins in place.

The demo can be found in the LunarG-VulkanSamples/Cube folder, and in the LunarG-VulkanSamples/Cube group in the Xcode Project Navigator in the Cube.xcworkspace Xcode workspace.

To run this demo, run either the Cube-iOS or Cube-macOS Scheme from within Xcode.

This demo includes a sizable window, and represents an example of how to detect, within your Vulkan code, when a window has been resized, and to modify the Vulkan swapchain accordingly.

The Cube demo is a simple example of installing MoltenVK as a dynamic library. In this demo, the MoltenVK dynamic library is embedded in the application, but it could have been installed as a system library instead.

API-Samples

This Xcode project actually contains a large number of modular demos, with each demo demonstrating a particular Vulkan feature, or suite of calls.

This demo can be found in the LunarG-VulkanSamples/API-Samples folder, and in the LunarG-VulkanSamples/API-Samples group in the Xcode Project Navigator in the Demos.xcworkspace Xcode workspace.

To run this demo, run either the API-Samples-iOS or API-Samples-macOS Scheme from within Xcode.

To specify which of the many modular demos to run, open the Samples.h in the API-Samples project in the Xcode Project Navigator in the Demos.xcworkspace Xcode workspace, and follow the instructions in the comments within that file.

Note: For simplicity, the API-Samples demos are bare-bones. Each of the API-Samples demos renders a single frame during app startup, and then leaves the rendered image static. There is no display loop or motion in any of these demos. This is normal for these demos, and the demo has not “hung” or “crashed” when this occurs.

To see descriptions and screenshots of each of the demos, open this summary document.

The API-Samples demo is a simple example of installing MoltenVK as a static framework.

Hologram

Note: In order to build the Hologram demo, you must have Python3 installed on your build computer.

This is a sophisticated particle demo that populates command buffers from multiple threads.

This demo can be found in the LunarG-VulkanSamples/Hologram folder, and in the LunarG-VulkanSamples/Hologram group in the Xcode Project Navigator in the Demos.xcworkspace Xcode workspace.

To run this demo, run either the Hologram-iOS or Hologram-macOS Scheme from within Xcode.

On macOS, once the demo is open, you can use the Up-arrow and Down-arrow keys on the keyboard to zoom the camera in and out of the scene. Zooming out will show more items on screen.

The demo allows some customization, by modifying the arguments passed to the demo at startup. To customize, modify the arguments created in the DemoViewController viewDidLoad method found in the iOS/DemoViewController.mm or macOS/DemoViewController.mm file.

The Hologram demo is a simple example of installing MoltenVK as a static library.

Sascha Willems Vulkan Samples

Sascha Willems provides an open-source library containing a large number of sophisticated Vulkan samples. The library contains support for running these examples on iOS and macOS in Xcode, using MoltenVK.

Installing the Sascha Willems Library

To install the Sascha Willems Vulkan samples, open a Terminal session and perform the following command-line steps:

  1. In the parent directory of this MoltenVK repository, clone the modified Sascha Willems Vulkan repo:

     git clone https://github.com/brenwill/Vulkan.git
    
  2. By default, the Sascha Willems Vulkan samples expect MoltenVK to be installed in a directory beside the Vulkan repository:

     Vulkan/
     MoltenVK/
    

    If you have installed MoltenVK somewhere else, create a symlink to your MoltenVK installation:

     ln -sfn path-to-MoltenVK/MoltenVK
    
  3. Follow the instructions in the Vulkan\xcode\README_MoltenVK_Examples.md document within the Sascha Willems Vulkan repository.

Cinder Vulkan Samples

Cinder is a cross-platform 3D graphics engine built in C++. Cinder supports Vulkan, and includes several Vulkan demos.

These demo apps are included as part of the Cinder code repository.

These MoltenVK demos use a modified version of Cinder, that allows Vulkan to run under iOS and macOS. To download the modified version of Cinder, and link it to MoltenVK, follow the instructions in the Installing the Cinder Library section next.

Installing the Cinder Library

To install the modified Cinder library, and link it to MoltenVK, open a Terminal session and perform the following command-line steps:

  1. In the parent directory of this MoltenVK repository, clone the modified Cinder repo, including required submodules:

     git clone --recursive https://github.com/brenwill/Cinder.git
    
  2. Build the core Cinder library:

     Cinder/xcode/fullbuild.sh
    
  3. By default, the Cinder Vulkan samples expect MoltenVK to be installed in a directory beside the Cinder repository:

     Cinder/
     MoltenVK/
    

    If you have installed MoltenVK somewhere else, create a symlink to your MoltenVK installation:

     ln -sfn path-to-MoltenVK/MoltenVK
    

Fish Tornado

This is a sophisticated simulation of a Fish Tornado, a swirling school of thousands of fish.

This demo can be found in the samples/_vulkan_explicit/FishTornado folder of the Cinder repository. To build and run this demo for either iOS or macOS, open the xcode-ios/FishTornado.xcodeproj or xcode/FishTornado.xcodeproj Xcode project, respectively.