mirror of
https://github.com/Vita3K/Vita3K.git
synced 2025-04-02 11:02:10 -04:00
134 lines
3.2 KiB
C++
134 lines
3.2 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 "SceFace.h"
|
|
|
|
EXPORT(int, sceFaceAgeGetWorkingMemorySize) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceAgeRangeEstimate) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceAgeRangeIntegrate) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceAllParts) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceAllPartsGetWorkingMemorySize) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceAttribute) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceAttributeGetWorkingMemorySize) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceDetection) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceDetectionEx) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceDetectionGetDefaultParam) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceDetectionGetWorkingMemorySize) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceDetectionLocal) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceEstimatePoseRegion) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceIdentifyGetFeature) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceIdentifyGetWorkingMemorySize) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceIdentifySimilarity) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceParts) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFacePartsEx) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFacePartsGetWorkingMemorySize) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFacePartsResultCheck) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceShapeFit) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceShapeGetWorkingMemorySize) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
EXPORT(int, sceFaceShapeTrack) {
|
|
return UNIMPLEMENTED();
|
|
}
|
|
|
|
BRIDGE_IMPL(sceFaceAgeGetWorkingMemorySize)
|
|
BRIDGE_IMPL(sceFaceAgeRangeEstimate)
|
|
BRIDGE_IMPL(sceFaceAgeRangeIntegrate)
|
|
BRIDGE_IMPL(sceFaceAllParts)
|
|
BRIDGE_IMPL(sceFaceAllPartsGetWorkingMemorySize)
|
|
BRIDGE_IMPL(sceFaceAttribute)
|
|
BRIDGE_IMPL(sceFaceAttributeGetWorkingMemorySize)
|
|
BRIDGE_IMPL(sceFaceDetection)
|
|
BRIDGE_IMPL(sceFaceDetectionEx)
|
|
BRIDGE_IMPL(sceFaceDetectionGetDefaultParam)
|
|
BRIDGE_IMPL(sceFaceDetectionGetWorkingMemorySize)
|
|
BRIDGE_IMPL(sceFaceDetectionLocal)
|
|
BRIDGE_IMPL(sceFaceEstimatePoseRegion)
|
|
BRIDGE_IMPL(sceFaceIdentifyGetFeature)
|
|
BRIDGE_IMPL(sceFaceIdentifyGetWorkingMemorySize)
|
|
BRIDGE_IMPL(sceFaceIdentifySimilarity)
|
|
BRIDGE_IMPL(sceFaceParts)
|
|
BRIDGE_IMPL(sceFacePartsEx)
|
|
BRIDGE_IMPL(sceFacePartsGetWorkingMemorySize)
|
|
BRIDGE_IMPL(sceFacePartsResultCheck)
|
|
BRIDGE_IMPL(sceFaceShapeFit)
|
|
BRIDGE_IMPL(sceFaceShapeGetWorkingMemorySize)
|
|
BRIDGE_IMPL(sceFaceShapeTrack)
|