You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
643 B
C
17 lines
643 B
C
// Modifications copyright Amazon.com, Inc. or its affiliates
|
|
// Modifications copyright Crytek GmbH
|
|
|
|
#ifndef TO_METAL_DECLARATION_H
|
|
#define TO_METAL_DECLARATION_H
|
|
|
|
#include "internal_includes/structs.h"
|
|
|
|
void TranslateDeclarationMETAL(HLSLCrossCompilerContext* psContext, const Declaration* psDecl);
|
|
|
|
char* GetDeclaredInputNameMETAL(const HLSLCrossCompilerContext* psContext, const SHADER_TYPE eShaderType, const Operand* psOperand);
|
|
char* GetDeclaredOutputNameMETAL(const HLSLCrossCompilerContext* psContext, const SHADER_TYPE eShaderType, const Operand* psOperand);
|
|
|
|
const char* GetMangleSuffixMETAL(const SHADER_TYPE eShaderType);
|
|
|
|
#endif
|