mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-07 15:31:18 +12:00
put query object into a separate file
This commit is contained in:
parent
a328c5e753
commit
4cce3699f3
5 changed files with 61 additions and 43 deletions
17
src/Cafe/HW/Latte/Renderer/Metal/MetalQuery.cpp
Normal file
17
src/Cafe/HW/Latte/Renderer/Metal/MetalQuery.cpp
Normal 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");
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue