summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorarchshift <gh@archshift.com>2015-09-03 10:56:59 +0200
committerarchshift <gh@archshift.com>2015-09-03 10:56:59 +0200
commite0c10019a9ef13b274cd151e22531aeda2b62624 (patch)
treeb0ec3493a7e0b0f3a92bfe934b7166d1c358ed53 /src/core
parentMerge pull request #1083 from yuriks/microprofile-vs2015 (diff)
downloadyuzu-e0c10019a9ef13b274cd151e22531aeda2b62624.tar
yuzu-e0c10019a9ef13b274cd151e22531aeda2b62624.tar.gz
yuzu-e0c10019a9ef13b274cd151e22531aeda2b62624.tar.bz2
yuzu-e0c10019a9ef13b274cd151e22531aeda2b62624.tar.lz
yuzu-e0c10019a9ef13b274cd151e22531aeda2b62624.tar.xz
yuzu-e0c10019a9ef13b274cd151e22531aeda2b62624.tar.zst
yuzu-e0c10019a9ef13b274cd151e22531aeda2b62624.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/service/cam/cam_u.cpp63
1 files changed, 60 insertions, 3 deletions
diff --git a/src/core/hle/service/cam/cam_u.cpp b/src/core/hle/service/cam/cam_u.cpp
index 1c6aca955..55083e0c7 100644
--- a/src/core/hle/service/cam/cam_u.cpp
+++ b/src/core/hle/service/cam/cam_u.cpp
@@ -9,11 +9,68 @@
namespace Service {
namespace CAM {
-// Empty arrays are illegal -- commented out until an entry is added.
-//const Interface::FunctionInfo FunctionTable[] = { };
+const Interface::FunctionInfo FunctionTable[] = {
+ {0x00010040, nullptr, "StartCapture"},
+ {0x00020040, nullptr, "StopCapture"},
+ {0x00030040, nullptr, "IsBusy"},
+ {0x00040040, nullptr, "ClearBuffer"},
+ {0x00050040, nullptr, "GetVsyncInterruptEvent"},
+ {0x00060040, nullptr, "GetBufferErrorInterruptEvent"},
+ {0x00070102, nullptr, "SetReceiving"},
+ {0x00080040, nullptr, "IsFinishedReceiving"},
+ {0x00090100, nullptr, "SetTransferLines"},
+ {0x000A0080, nullptr, "GetMaxLines"},
+ {0x000B0100, nullptr, "SetTransferBytes"},
+ {0x000C0040, nullptr, "GetTransferBytes"},
+ {0x000D0080, nullptr, "GetMaxBytes"},
+ {0x000E0080, nullptr, "SetTrimming"},
+ {0x000F0040, nullptr, "IsTrimming"},
+ {0x00100140, nullptr, "SetTrimmingParams"},
+ {0x00110040, nullptr, "GetTrimmingParams"},
+ {0x00120140, nullptr, "SetTrimmingParamsCenter"},
+ {0x00130040, nullptr, "Activate"},
+ {0x00140080, nullptr, "SwitchContext"},
+ {0x00150080, nullptr, "SetExposure"},
+ {0x00160080, nullptr, "SetWhiteBalance"},
+ {0x00170080, nullptr, "SetWhiteBalanceWithoutBaseUp"},
+ {0x00180080, nullptr, "SetSharpness"},
+ {0x00190080, nullptr, "SetAutoExposure"},
+ {0x001A0040, nullptr, "IsAutoExposure"},
+ {0x001B0080, nullptr, "SetAutoWhiteBalance"},
+ {0x001C0040, nullptr, "IsAutoWhiteBalance"},
+ {0x001D00C0, nullptr, "FlipImage"},
+ {0x001E0200, nullptr, "SetDetailSize"},
+ {0x001F00C0, nullptr, "SetSize"},
+ {0x00200080, nullptr, "SetFrameRate"},
+ {0x00210080, nullptr, "SetPhotoMode"},
+ {0x002200C0, nullptr, "SetEffect"},
+ {0x00230080, nullptr, "SetContrast"},
+ {0x00240080, nullptr, "SetLensCorrection"},
+ {0x002500C0, nullptr, "SetOutputFormat"},
+ {0x00260140, nullptr, "SetAutoExposureWindow"},
+ {0x00270140, nullptr, "SetAutoWhiteBalanceWindow"},
+ {0x00280080, nullptr, "SetNoiseFilter"},
+ {0x00290080, nullptr, "SynchronizeVsyncTiming"},
+ {0x002A0080, nullptr, "GetLatestVsyncTiming"},
+ {0x002B0000, nullptr, "GetStereoCameraCalibrationData"},
+ {0x002C0400, nullptr, "SetStereoCameraCalibrationData"},
+ {0x00310180, nullptr, "SetImageQualityCalibrationData"},
+ {0x00320000, nullptr, "GetImageQualityCalibrationData"},
+ {0x003302C0, nullptr, "SetPackageParameterWithoutContext"},
+ {0x00340140, nullptr, "SetPackageParameterWithContext"},
+ {0x003501C0, nullptr, "SetPackageParameterWithContextDetail"},
+ {0x00360000, nullptr, "GetSuitableY2rStandardCoefficient"},
+ {0x00380040, nullptr, "PlayShutterSound"},
+ {0x00390000, nullptr, "DriverInitialize"},
+ {0x003A0000, nullptr, "DriverFinalize"},
+ {0x003B0000, nullptr, "GetActivatedCamera"},
+ {0x003C0000, nullptr, "GetSleepCamera"},
+ {0x003D0040, nullptr, "SetSleepCamera"},
+ {0x003E0040, nullptr, "SetBrightnessSynchronization"},
+};
CAM_U_Interface::CAM_U_Interface() {
- //Register(FunctionTable);
+ Register(FunctionTable);
}
} // namespace CAM