https://github.com/shader-slang/slang
Raw File
Tip revision: 45ae0eb9ada14b8ead3c9785e16cc234a4d31ef0 authored by Yong He on 01 November 2021, 17:53:42 UTC
Disable aarch64 build for releases. (#2000)
Tip revision: 45ae0eb
slang-ir-collect-global-uniforms.h
// slang-ir-collect-global-uniforms.h
#pragma once

#include "slang-compiler.h"

namespace Slang
{
struct IRModule;
struct IRVarLayout;

    /// Collect global-scope shader parameters that use uniform/ordinary
    /// storage into a single `struct` (possibly wrapped in a constant buffer).
    ///
void collectGlobalUniformParameters(
    IRModule*       module,
    IRVarLayout*    globalScopeVarLayout);

}
back to top