From 6cbc3929a54d37bd23cb5efa8e3320ba02f78b2f Mon Sep 17 00:00:00 2001 From: jsmall-nvidia Date: Fri, 31 May 2019 17:20:37 -0400 Subject: Use slang- prefix on slang compiler and core source (#973) * Prefixing source files in source/slang with slang- * Prefix source in source/slang with slang- prefix. * Rename core source files with slang- prefix. * Update project files. * Fix problems from automatic merge. --- source/slang/emit.h | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 source/slang/emit.h (limited to 'source/slang/emit.h') diff --git a/source/slang/emit.h b/source/slang/emit.h deleted file mode 100644 index dc9300025..000000000 --- a/source/slang/emit.h +++ /dev/null @@ -1,27 +0,0 @@ -// Emit.h -#ifndef SLANG_EMIT_H_INCLUDED -#define SLANG_EMIT_H_INCLUDED - -#include "../core/basic.h" - -#include "compiler.h" - -namespace Slang -{ - class EntryPoint; - class ProgramLayout; - class TranslationUnitRequest; - - // Emit code for a single entry point, based on - // the input translation unit. - String emitEntryPoint( - BackEndCompileRequest* compileRequest, - EntryPoint* entryPoint, - - // The target language to generate code in (e.g., HLSL/GLSL) - CodeGenTarget target, - - // The full target request - TargetRequest* targetRequest); -} -#endif -- cgit v1.2.3