https://github.com/shader-slang/slang
Raw File
Tip revision: 7a1b6deff067b393041e90eb6b1ac6a62dedd5dd authored by jsmall-nvidia on 31 July 2020, 16:25:58 UTC
Fix for bug where memory that has been allocated with new T[] (within a list) is freed with free in the RiffContainer. (#1473)
Tip revision: 7a1b6de
slang-ir-glsl-legalize.h
// slang-ir-glsl-legalize.h
#pragma once
#include"../core/slang-list.h"

namespace Slang
{

class DiagnosticSink;
class Session;

class GLSLExtensionTracker;

struct IRFunc;
struct IRModule;

void legalizeEntryPointsForGLSL(
    Session*                session,
    IRModule*               module,
    const List<IRFunc*>&    func,
    DiagnosticSink*         sink,
    GLSLExtensionTracker*   glslExtensionTracker);

}
back to top