Vita3K/vita3k/modules/SceShaccCg/SceShaccCg.cpp
2021-10-16 20:07:20 +02:00

174 lines
4.5 KiB
C++

// Vita3K emulator project
// Copyright (C) 2021 Vita3K team
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along
// with this program; if not, write to the Free Software Foundation, Inc.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#include "SceShaccCg.h"
EXPORT(int, sceShaccCgCompileProgram) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgDestroyCompileOutput) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetArrayParameter) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetArraySize) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetFirstParameter) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetFirstStructParameter) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetFirstUniformBlockParameter) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetNextParameter) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterBaseType) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterBufferIndex) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterByName) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterClass) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterColumns) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterDirection) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterMemoryLayout) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterName) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterResourceIndex) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterRows) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterSemantic) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterUserType) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterVariability) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetParameterVectorWidth) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetRowParameter) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetSamplerQueryFormatPrecision) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetSamplerQueryFormatPrecisionCount) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgGetSamplerQueryFormatWidth) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgInitializeCallbackList) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgInitializeCompileOptions) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgIsParameterReferenced) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgIsParameterRegFormat) {
return UNIMPLEMENTED();
}
EXPORT(int, sceShaccCgSetDefaultAllocator) {
return UNIMPLEMENTED();
}
BRIDGE_IMPL(sceShaccCgCompileProgram)
BRIDGE_IMPL(sceShaccCgDestroyCompileOutput)
BRIDGE_IMPL(sceShaccCgGetArrayParameter)
BRIDGE_IMPL(sceShaccCgGetArraySize)
BRIDGE_IMPL(sceShaccCgGetFirstParameter)
BRIDGE_IMPL(sceShaccCgGetFirstStructParameter)
BRIDGE_IMPL(sceShaccCgGetFirstUniformBlockParameter)
BRIDGE_IMPL(sceShaccCgGetNextParameter)
BRIDGE_IMPL(sceShaccCgGetParameterBaseType)
BRIDGE_IMPL(sceShaccCgGetParameterBufferIndex)
BRIDGE_IMPL(sceShaccCgGetParameterByName)
BRIDGE_IMPL(sceShaccCgGetParameterClass)
BRIDGE_IMPL(sceShaccCgGetParameterColumns)
BRIDGE_IMPL(sceShaccCgGetParameterDirection)
BRIDGE_IMPL(sceShaccCgGetParameterMemoryLayout)
BRIDGE_IMPL(sceShaccCgGetParameterName)
BRIDGE_IMPL(sceShaccCgGetParameterResourceIndex)
BRIDGE_IMPL(sceShaccCgGetParameterRows)
BRIDGE_IMPL(sceShaccCgGetParameterSemantic)
BRIDGE_IMPL(sceShaccCgGetParameterUserType)
BRIDGE_IMPL(sceShaccCgGetParameterVariability)
BRIDGE_IMPL(sceShaccCgGetParameterVectorWidth)
BRIDGE_IMPL(sceShaccCgGetRowParameter)
BRIDGE_IMPL(sceShaccCgGetSamplerQueryFormatPrecision)
BRIDGE_IMPL(sceShaccCgGetSamplerQueryFormatPrecisionCount)
BRIDGE_IMPL(sceShaccCgGetSamplerQueryFormatWidth)
BRIDGE_IMPL(sceShaccCgInitializeCallbackList)
BRIDGE_IMPL(sceShaccCgInitializeCompileOptions)
BRIDGE_IMPL(sceShaccCgIsParameterReferenced)
BRIDGE_IMPL(sceShaccCgIsParameterRegFormat)
BRIDGE_IMPL(sceShaccCgSetDefaultAllocator)