https://github.com/shader-slang/slang
Raw File
Tip revision: afe41a6c994a684cd646b4432a285ef959d0716b authored by Tim Foley on 27 June 2017, 21:43:53 UTC
Merge pull request #47 from tfoleyNV/import-subdir
Tip revision: afe41a6
reflection.h
#ifndef SLANG_REFLECTION_H
#define SLANG_REFLECTION_H

#include "../core/basic.h"
#include "syntax.h"

#include "../../slang.h"

namespace Slang {

// TODO(tfoley): Need to move these somewhere universal

typedef intptr_t    Int;
typedef int64_t     Int64;

typedef uintptr_t   UInt;
typedef uint64_t    UInt64;

class ProgramLayout;
class TypeLayout;

String emitReflectionJSON(
    ProgramLayout* programLayout);

//

SlangTypeKind getReflectionTypeKind(ExpressionType* type);

SlangTypeKind getReflectionParameterCategory(TypeLayout* typeLayout);

UInt getReflectionFieldCount(ExpressionType* type);
UInt getReflectionFieldByIndex(ExpressionType* type, UInt index);
UInt getReflectionFieldByIndex(TypeLayout* typeLayout, UInt index);

}

#endif // SLANG_REFLECTION_H
back to top