put query object into a separate file

This commit is contained in:
Samuliak 2024-09-12 08:05:27 +02:00
parent a328c5e753
commit 4cce3699f3
5 changed files with 61 additions and 43 deletions

View file

@ -0,0 +1,17 @@
#include "Cafe/HW/Latte/Renderer/Metal/MetalQuery.h"
bool LatteQueryObjectMtl::getResult(uint64& numSamplesPassed)
{
cemuLog_log(LogType::MetalLogging, "LatteQueryObjectMtl::getResult: occlusion queries are not yet supported on Metal");
return true;
}
void LatteQueryObjectMtl::begin()
{
cemuLog_log(LogType::MetalLogging, "LatteQueryObjectMtl::begin: occlusion queries are not yet supported on Metal");
}
void LatteQueryObjectMtl::end()
{
cemuLog_log(LogType::MetalLogging, "LatteQueryObjectMtl::end: occlusion queries are not yet supported on Metal");
}