mirror of
https://github.com/AxioDL/metaforce.git
synced 2025-12-09 18:27:42 +00:00
initial project stubs
This commit is contained in:
0
hecl/lib/backend/GLSL/CGLSLFragEmitter.cpp
Normal file
0
hecl/lib/backend/GLSL/CGLSLFragEmitter.cpp
Normal file
0
hecl/lib/backend/GLSL/CGLSLObject.cpp
Normal file
0
hecl/lib/backend/GLSL/CGLSLObject.cpp
Normal file
0
hecl/lib/backend/GLSL/CGLSLSpec.cpp
Normal file
0
hecl/lib/backend/GLSL/CGLSLSpec.cpp
Normal file
0
hecl/lib/backend/GLSL/CGLSLVertEmitter.cpp
Normal file
0
hecl/lib/backend/GLSL/CGLSLVertEmitter.cpp
Normal file
0
hecl/lib/backend/GX/CGXFragEmitter.cpp
Normal file
0
hecl/lib/backend/GX/CGXFragEmitter.cpp
Normal file
0
hecl/lib/backend/GX/CGXObject.cpp
Normal file
0
hecl/lib/backend/GX/CGXObject.cpp
Normal file
0
hecl/lib/backend/GX/CGXSpec.cpp
Normal file
0
hecl/lib/backend/GX/CGXSpec.cpp
Normal file
0
hecl/lib/backend/GX/CGXVertEmitter.cpp
Normal file
0
hecl/lib/backend/GX/CGXVertEmitter.cpp
Normal file
0
hecl/lib/backend/GX2LLVM/CGX2LLVMFragEmitter.cpp
Normal file
0
hecl/lib/backend/GX2LLVM/CGX2LLVMFragEmitter.cpp
Normal file
0
hecl/lib/backend/GX2LLVM/CGX2LLVMObject.cpp
Normal file
0
hecl/lib/backend/GX2LLVM/CGX2LLVMObject.cpp
Normal file
0
hecl/lib/backend/GX2LLVM/CGX2LLVMSpec.cpp
Normal file
0
hecl/lib/backend/GX2LLVM/CGX2LLVMSpec.cpp
Normal file
0
hecl/lib/backend/GX2LLVM/CGX2LLVMVertEmitter.cpp
Normal file
0
hecl/lib/backend/GX2LLVM/CGX2LLVMVertEmitter.cpp
Normal file
0
hecl/lib/backend/HECLBackend.cpp
Normal file
0
hecl/lib/backend/HECLBackend.cpp
Normal file
0
hecl/lib/backend/HLSL/CHLSLFragEmitter.cpp
Normal file
0
hecl/lib/backend/HLSL/CHLSLFragEmitter.cpp
Normal file
0
hecl/lib/backend/HLSL/CHLSLObject.cpp
Normal file
0
hecl/lib/backend/HLSL/CHLSLObject.cpp
Normal file
0
hecl/lib/backend/HLSL/CHLSLSpec.cpp
Normal file
0
hecl/lib/backend/HLSL/CHLSLSpec.cpp
Normal file
0
hecl/lib/backend/HLSL/CHLSLVertEmitter.cpp
Normal file
0
hecl/lib/backend/HLSL/CHLSLVertEmitter.cpp
Normal file
4
hecl/lib/backend/IBackendFragEmitter.hpp
Normal file
4
hecl/lib/backend/IBackendFragEmitter.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef IBACKENDFRAGEMITTER_HPP
|
||||
#define IBACKENDFRAGEMITTER_HPP
|
||||
|
||||
#endif // IBACKENDFRAGEMITTER_HPP
|
||||
4
hecl/lib/backend/IBackendObject.hpp
Normal file
4
hecl/lib/backend/IBackendObject.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef IBACKENDOBJECT_HPP
|
||||
#define IBACKENDOBJECT_HPP
|
||||
|
||||
#endif // IBACKENDOBJECT_HPP
|
||||
4
hecl/lib/backend/IBackendSpec.hpp
Normal file
4
hecl/lib/backend/IBackendSpec.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef IBACKENDSPEC_HPP
|
||||
#define IBACKENDSPEC_HPP
|
||||
|
||||
#endif // IBACKENDSPEC_HPP
|
||||
4
hecl/lib/backend/IBackendVertEmitter.hpp
Normal file
4
hecl/lib/backend/IBackendVertEmitter.hpp
Normal file
@@ -0,0 +1,4 @@
|
||||
#ifndef IBACKENDVERTEMITTER_HPP
|
||||
#define IBACKENDVERTEMITTER_HPP
|
||||
|
||||
#endif // IBACKENDVERTEMITTER_HPP
|
||||
0
hecl/lib/backend/VSPIR/CVSPIRFragEmitter.cpp
Normal file
0
hecl/lib/backend/VSPIR/CVSPIRFragEmitter.cpp
Normal file
0
hecl/lib/backend/VSPIR/CVSPIRObject.cpp
Normal file
0
hecl/lib/backend/VSPIR/CVSPIRObject.cpp
Normal file
0
hecl/lib/backend/VSPIR/CVSPIRSpec.cpp
Normal file
0
hecl/lib/backend/VSPIR/CVSPIRSpec.cpp
Normal file
0
hecl/lib/backend/VSPIR/CVSPIRVertEmitter.cpp
Normal file
0
hecl/lib/backend/VSPIR/CVSPIRVertEmitter.cpp
Normal file
33
hecl/lib/backend/backend.pri
Normal file
33
hecl/lib/backend/backend.pri
Normal file
@@ -0,0 +1,33 @@
|
||||
HEADERS += \
|
||||
$$PWD/IBackendFragEmitter.hpp \
|
||||
$$PWD/IBackendObject.hpp \
|
||||
$$PWD/IBackendSpec.hpp \
|
||||
$$PWD/IBackendVertEmitter.hpp
|
||||
|
||||
SOURCES += \
|
||||
$$PWD/GLSL/CGLSLFragEmitter.cpp \
|
||||
$$PWD/GLSL/CGLSLObject.cpp \
|
||||
$$PWD/GLSL/CGLSLSpec.cpp \
|
||||
$$PWD/GLSL/CGLSLVertEmitter.cpp \
|
||||
$$PWD/GX/CGXFragEmitter.cpp \
|
||||
$$PWD/GX/CGXObject.cpp \
|
||||
$$PWD/GX/CGXSpec.cpp \
|
||||
$$PWD/GX/CGXVertEmitter.cpp \
|
||||
$$PWD/HLSL/CHLSLFragEmitter.cpp \
|
||||
$$PWD/HLSL/CHLSLObject.cpp \
|
||||
$$PWD/HLSL/CHLSLSpec.cpp \
|
||||
$$PWD/HLSL/CHLSLVertEmitter.cpp \
|
||||
$$PWD/VSPIR/CVSPIRFragEmitter.cpp \
|
||||
$$PWD/VSPIR/CVSPIRObject.cpp \
|
||||
$$PWD/VSPIR/CVSPIRSpec.cpp \
|
||||
$$PWD/VSPIR/CVSPIRVertEmitter.cpp \
|
||||
$$PWD/HECLBackend.cpp
|
||||
|
||||
!isEmpty(LLVMROOT) {
|
||||
message("Added GX2 Backend")
|
||||
SOURCES += \
|
||||
$$PWD/GX2LLVM/CGX2LLVMFragEmitter.cpp \
|
||||
$$PWD/GX2LLVM/CGX2LLVMObject.cpp \
|
||||
$$PWD/GX2LLVM/CGX2LLVMSpec.cpp \
|
||||
$$PWD/GX2LLVM/CGX2LLVMVertEmitter.cpp
|
||||
}
|
||||
Reference in New Issue
Block a user