mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-09-14 01:35:36 +00:00
196 lines
7.0 KiB
C++
196 lines
7.0 KiB
C++
/******************************************************************************
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2022 Baldur Karlsson
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
******************************************************************************/
|
|
|
|
#include "metal_device.h"
|
|
#include "metal_command_queue.h"
|
|
#include "metal_helpers_bridge.h"
|
|
#include "metal_library.h"
|
|
#include "metal_manager.h"
|
|
|
|
WrappedMTLDevice::WrappedMTLDevice(MTL::Device *realMTLDevice, ResourceId objId)
|
|
: WrappedMTLObject(realMTLDevice, objId, this, GetStateRef())
|
|
{
|
|
objcBridge = AllocateObjCBridge(this);
|
|
m_WrappedMTLDevice = this;
|
|
threadSerialiserTLSSlot = Threading::AllocateTLSSlot();
|
|
|
|
m_ResourceManager = new MetalResourceManager(m_State, this);
|
|
RDCASSERT(m_WrappedMTLDevice == this);
|
|
GetResourceManager()->AddCurrentResource(objId, this);
|
|
}
|
|
|
|
WrappedMTLDevice *WrappedMTLDevice::MTLCreateSystemDefaultDevice(MTL::Device *realMTLDevice)
|
|
{
|
|
ResourceId objId = ResourceIDGen::GetNewUniqueID();
|
|
WrappedMTLDevice *wrappedMTLDevice = new WrappedMTLDevice(realMTLDevice, objId);
|
|
|
|
return wrappedMTLDevice;
|
|
}
|
|
|
|
template <typename SerialiserType>
|
|
bool WrappedMTLDevice::Serialise_newCommandQueue(SerialiserType &ser, WrappedMTLCommandQueue *queue)
|
|
{
|
|
SERIALISE_ELEMENT_LOCAL(Device, this);
|
|
SERIALISE_ELEMENT_LOCAL(CommandQueue, GetResID(queue)).TypedAs("MTLCommandQueue"_lit);
|
|
|
|
SERIALISE_CHECK_READ_ERRORS();
|
|
|
|
if(IsReplayingAndReading())
|
|
{
|
|
// TODO: implement RD MTL replay
|
|
}
|
|
return true;
|
|
}
|
|
|
|
WrappedMTLCommandQueue *WrappedMTLDevice::newCommandQueue()
|
|
{
|
|
MTL::CommandQueue *realMTLCommandQueue;
|
|
SERIALISE_TIME_CALL(realMTLCommandQueue = Unwrap(this)->newCommandQueue());
|
|
WrappedMTLCommandQueue *wrappedMTLCommandQueue;
|
|
ResourceId id = GetResourceManager()->WrapResource(realMTLCommandQueue, wrappedMTLCommandQueue);
|
|
if(IsCaptureMode(m_State))
|
|
{
|
|
Chunk *chunk = NULL;
|
|
{
|
|
CACHE_THREAD_SERIALISER();
|
|
SCOPED_SERIALISE_CHUNK(MetalChunk::MTLDevice_newCommandQueue);
|
|
Serialise_newCommandQueue(ser, wrappedMTLCommandQueue);
|
|
chunk = scope.Get();
|
|
}
|
|
MetalResourceRecord *record = GetResourceManager()->AddResourceRecord(wrappedMTLCommandQueue);
|
|
record->AddChunk(chunk);
|
|
}
|
|
else
|
|
{
|
|
// TODO: implement RD MTL replay
|
|
// GetResourceManager()->AddLiveResource(id, wrappedMTLCommandQueue);
|
|
}
|
|
return wrappedMTLCommandQueue;
|
|
}
|
|
|
|
template <typename SerialiserType>
|
|
bool WrappedMTLDevice::Serialise_newDefaultLibrary(SerialiserType &ser, WrappedMTLLibrary *library)
|
|
{
|
|
bytebuf buffer;
|
|
if(ser.IsWriting())
|
|
{
|
|
ObjC::Get_defaultLibraryData(buffer);
|
|
}
|
|
|
|
SERIALISE_ELEMENT_LOCAL(Device, this);
|
|
SERIALISE_ELEMENT_LOCAL(Library, GetResID(library)).TypedAs("MTLLibrary"_lit);
|
|
SERIALISE_ELEMENT(buffer);
|
|
|
|
SERIALISE_CHECK_READ_ERRORS();
|
|
|
|
if(IsReplayingAndReading())
|
|
{
|
|
// TODO: implement RD MTL replay
|
|
}
|
|
return true;
|
|
}
|
|
|
|
WrappedMTLLibrary *WrappedMTLDevice::newDefaultLibrary()
|
|
{
|
|
MTL::Library *realMTLLibrary;
|
|
|
|
SERIALISE_TIME_CALL(realMTLLibrary = Unwrap(this)->newDefaultLibrary());
|
|
WrappedMTLLibrary *wrappedMTLLibrary;
|
|
ResourceId id = GetResourceManager()->WrapResource(realMTLLibrary, wrappedMTLLibrary);
|
|
if(IsCaptureMode(m_State))
|
|
{
|
|
Chunk *chunk = NULL;
|
|
{
|
|
CACHE_THREAD_SERIALISER();
|
|
SCOPED_SERIALISE_CHUNK(MetalChunk::MTLDevice_newDefaultLibrary);
|
|
Serialise_newDefaultLibrary(ser, wrappedMTLLibrary);
|
|
chunk = scope.Get();
|
|
}
|
|
MetalResourceRecord *record = GetResourceManager()->AddResourceRecord(wrappedMTLLibrary);
|
|
record->AddChunk(chunk);
|
|
GetResourceManager()->MarkResourceFrameReferenced(id, eFrameRef_Read);
|
|
}
|
|
else
|
|
{
|
|
// TODO: implement RD MTL replay
|
|
// GetResourceManager()->AddLiveResource(id, wrappedMTLLibrary);
|
|
}
|
|
return wrappedMTLLibrary;
|
|
}
|
|
|
|
template <typename SerialiserType>
|
|
bool WrappedMTLDevice::Serialise_newLibraryWithSource(SerialiserType &ser,
|
|
WrappedMTLLibrary *library, NS::String *source,
|
|
MTL::CompileOptions *options, NS::Error **error)
|
|
{
|
|
SERIALISE_ELEMENT_LOCAL(Device, this);
|
|
SERIALISE_ELEMENT_LOCAL(Library, GetResID(library)).TypedAs("MTLLibrary"_lit);
|
|
SERIALISE_ELEMENT(source);
|
|
// TODO:SERIALISE_ELEMENT(options);
|
|
|
|
SERIALISE_CHECK_READ_ERRORS();
|
|
|
|
if(IsReplayingAndReading())
|
|
{
|
|
// TODO: implement RD MTL replay
|
|
}
|
|
return true;
|
|
}
|
|
|
|
WrappedMTLLibrary *WrappedMTLDevice::newLibraryWithSource(NS::String *source,
|
|
MTL::CompileOptions *options,
|
|
NS::Error **error)
|
|
{
|
|
MTL::Library *realMTLLibrary;
|
|
SERIALISE_TIME_CALL(realMTLLibrary = Unwrap(this)->newLibrary(source, options, error));
|
|
WrappedMTLLibrary *wrappedMTLLibrary;
|
|
ResourceId id = GetResourceManager()->WrapResource(realMTLLibrary, wrappedMTLLibrary);
|
|
if(IsCaptureMode(m_State))
|
|
{
|
|
Chunk *chunk = NULL;
|
|
{
|
|
CACHE_THREAD_SERIALISER();
|
|
SCOPED_SERIALISE_CHUNK(MetalChunk::MTLDevice_newLibraryWithSource);
|
|
Serialise_newLibraryWithSource(ser, wrappedMTLLibrary, source, options, error);
|
|
chunk = scope.Get();
|
|
}
|
|
MetalResourceRecord *record = GetResourceManager()->AddResourceRecord(wrappedMTLLibrary);
|
|
record->AddChunk(chunk);
|
|
GetResourceManager()->MarkResourceFrameReferenced(id, eFrameRef_Read);
|
|
}
|
|
else
|
|
{
|
|
// TODO: implement RD MTL replay
|
|
// GetResourceManager()->AddLiveResource(id, wrappedMTLLibrary);
|
|
}
|
|
return wrappedMTLLibrary;
|
|
}
|
|
|
|
INSTANTIATE_FUNCTION_WITH_RETURN_SERIALISED(WrappedMTLDevice, WrappedMTLCommandQueue *,
|
|
newCommandQueue);
|
|
INSTANTIATE_FUNCTION_WITH_RETURN_SERIALISED(WrappedMTLDevice, WrappedMTLLibrary *, newDefaultLibrary);
|
|
INSTANTIATE_FUNCTION_WITH_RETURN_SERIALISED(WrappedMTLDevice, WrappedMTLLibrary *,
|
|
newLibraryWithSource, NS::String *source,
|
|
MTL::CompileOptions *options, NS::Error **error);
|