Giter VIP home page Giter VIP logo

metal-shader-playground's Introduction

metal-shader-playground

First Attempt: build a simple Xcode Playground to experiment with Metal shaders

Metal shaders in a playground do work, but are not so useful as we would hope. This is because the shader definition and shader code (.metal) have to be added to the Resources in order to work. That means they will not be automatically / live be recompiled. ... At least that doesn't work as smooth as expected.

Second Attempt: a cross platform experiment app

Another attempt to experiment with Metal shader is to make a simple cross platform (iOS + macOS) app, MetalBox, and to run that in debugger mode. It needs to run on a real device, so for macOS that can be the development machine itself, and for iOS this needs to be an actual iPhone or iPad, because the iOS Simulator cannot simulate metal.

MetalBox debugging

The usefulness of the iOS & macOS app, is that you can Capture the GPU Frame while running in debug mode in Xcode.

Experiments

First metal experiment: draw normals as color

draw_normals

Use the draw_normals technique

Draw the normals with a mask

masked_normals

Use the draw_masked_normals technique

Draw the position as color with a mask

masked_position

Use the draw_masked_position technique. (See the note about clearing the color state to remove the above artifact)

Draw a highlight around a shape

blurred_highlight_tap17

Use the draw_highlight technique. (The above is with a tap 17 blur and 5 repeated passes)

Draw a thicker border around the shape

bloom_border

Use the draw_grow_border technique. (Optimized version of the previous shader, specifically for this bloom-border effect)

TODO

  • The shaders might be optimized by only using one channel image buffers as mask buffers. Right now the mask buffers are default 4 channel (RGBA) color buffers, but only their R (red) channel is used.
    • (Specifically I could not get my fragment functions to output anything else then half4. Also the texture2d<float> sampler always returned a float4, and I could not figure out how to set the fragment arguments' MTLPixelFormat)

Notes

Notes on categoryBitMask:

  • categoryBitMasks need to be applied to all the childNodes of compound / combined node. (see example below)
  • default categoryBitMask or nodes, lights and techniques is 1
  • bitMask of nodes and lights (or technique) are compared with bitwise AND (0 * 1 = 0). Any non-zero result is rendered.

So don't use:

object.categoryBitMask = 4

But use:

object.enumerateChildNodes { (node, stop) in
    node.categoryBitMask = 4
}

Notes on Clearing of the color state:

  • There is a difference between the default state of the clear value between iOS and macOS:
    • Default colorStates.clear on iOS: true
    • Default colorStates.clear on macOS: false
  • Default depthStates.clear is false on both platforms.
  • Clearing means that each draw pass clear the buffer before rendering content to it.
  • If you don't clear that means the buffer value could be accumulated
    • This (not clearing) is useful if e.g. you need multiple blur passes on the same buffer.

As an example on what happens if you don't clear the color buffer, when you're not drawing every pixel (e.g. when only some nodes are affected from their categoryBitMask)

    "colorStates" : {
        "clear" : 0
    },

See screenshot masked_position.png

So, to prevent that, in those cases make sure to set the clear state like so:

    "colorStates" : {
        "clear" : 1
    },
    "depthStates" : {
        "clear" : 1
    },

Notes on Optimizing the Blur passes:

To calculate the blur offsets and weights I used this online tool:

Notes on making it work Cross Platform:

In order to make the same code compile and run on both macOS and iOS, we need to make some shared type definitions, because the frameworks do not 100% overlap:

Colors:
#if os(macOS)
    typealias SCNColor = NSColor
#else
    typealias SCNColor = UIColor
#endif
Floats to be used in a SCNVector3:
#if os(macOS)
    typealias SCNVectorFloat = CGFloat
#else
    typealias SCNVectorFloat = Float
#endif

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.