2018-07-18 09:40:26 +00:00
|
|
|
// Copyright 2018 The Dawn Authors
|
2017-04-20 18:38:20 +00:00
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2018-07-24 14:42:33 +00:00
|
|
|
#ifndef DAWNNATIVE_METAL_DEVICEMTL_H_
|
|
|
|
#define DAWNNATIVE_METAL_DEVICEMTL_H_
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-07-25 15:03:23 +00:00
|
|
|
#include "dawn_native/dawn_platform.h"
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2017-07-06 18:41:13 +00:00
|
|
|
#include "common/Serial.h"
|
2018-07-24 11:53:51 +00:00
|
|
|
#include "dawn_native/Device.h"
|
|
|
|
#include "dawn_native/metal/Forward.h"
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2019-09-18 04:32:52 +00:00
|
|
|
#import <IOSurface/IOSurfaceRef.h>
|
2017-04-20 18:38:20 +00:00
|
|
|
#import <Metal/Metal.h>
|
2019-09-18 04:32:52 +00:00
|
|
|
#import <QuartzCore/QuartzCore.h>
|
2018-09-06 13:26:48 +00:00
|
|
|
|
2019-03-22 07:36:34 +00:00
|
|
|
#include <atomic>
|
2018-09-06 13:26:48 +00:00
|
|
|
#include <memory>
|
2019-03-22 07:36:34 +00:00
|
|
|
#include <mutex>
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
namespace dawn_native { namespace metal {
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-03-21 00:56:39 +00:00
|
|
|
class MapRequestTracker;
|
2017-06-14 20:40:47 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
class Device : public DeviceBase {
|
2017-11-24 19:12:44 +00:00
|
|
|
public:
|
2019-04-26 07:52:57 +00:00
|
|
|
Device(AdapterBase* adapter, id<MTLDevice> mtlDevice, const DeviceDescriptor* descriptor);
|
2017-11-24 19:12:44 +00:00
|
|
|
~Device();
|
|
|
|
|
2019-11-13 17:00:37 +00:00
|
|
|
CommandBufferBase* CreateCommandBuffer(CommandEncoder* encoder,
|
2019-07-10 20:43:13 +00:00
|
|
|
const CommandBufferDescriptor* descriptor) override;
|
2017-11-24 19:12:44 +00:00
|
|
|
|
2018-12-01 03:20:19 +00:00
|
|
|
Serial GetCompletedCommandSerial() const final override;
|
|
|
|
Serial GetLastSubmittedCommandSerial() const final override;
|
2019-10-07 15:32:10 +00:00
|
|
|
MaybeError TickImpl() override;
|
2017-11-24 19:12:44 +00:00
|
|
|
|
|
|
|
id<MTLDevice> GetMTLDevice();
|
2019-10-07 08:18:09 +00:00
|
|
|
id<MTLCommandQueue> GetMTLQueue();
|
2017-11-24 19:12:44 +00:00
|
|
|
|
2020-01-13 13:47:01 +00:00
|
|
|
id<MTLCommandBuffer> GetPendingCommandBuffer();
|
2019-01-29 00:10:07 +00:00
|
|
|
Serial GetPendingCommandSerial() const override;
|
2017-11-24 19:12:44 +00:00
|
|
|
void SubmitPendingCommandBuffer();
|
|
|
|
|
2018-03-21 00:56:39 +00:00
|
|
|
MapRequestTracker* GetMapTracker() const;
|
2017-11-24 19:12:44 +00:00
|
|
|
|
2019-03-01 12:01:18 +00:00
|
|
|
TextureBase* CreateTextureWrappingIOSurface(const TextureDescriptor* descriptor,
|
|
|
|
IOSurfaceRef ioSurface,
|
|
|
|
uint32_t plane);
|
2019-03-22 07:36:34 +00:00
|
|
|
void WaitForCommandsToBeScheduled();
|
2019-03-01 12:01:18 +00:00
|
|
|
|
2019-01-29 00:10:07 +00:00
|
|
|
ResultOrError<std::unique_ptr<StagingBufferBase>> CreateStagingBuffer(size_t size) override;
|
|
|
|
MaybeError CopyFromStagingToBuffer(StagingBufferBase* source,
|
2019-04-05 20:51:29 +00:00
|
|
|
uint64_t sourceOffset,
|
2019-01-29 00:10:07 +00:00
|
|
|
BufferBase* destination,
|
2019-04-05 20:51:29 +00:00
|
|
|
uint64_t destinationOffset,
|
|
|
|
uint64_t size) override;
|
2019-01-29 00:10:07 +00:00
|
|
|
|
2017-11-24 19:12:44 +00:00
|
|
|
private:
|
2018-12-05 07:18:30 +00:00
|
|
|
ResultOrError<BindGroupBase*> CreateBindGroupImpl(
|
|
|
|
const BindGroupDescriptor* descriptor) override;
|
2018-07-10 19:23:50 +00:00
|
|
|
ResultOrError<BindGroupLayoutBase*> CreateBindGroupLayoutImpl(
|
2018-07-25 15:03:23 +00:00
|
|
|
const BindGroupLayoutDescriptor* descriptor) override;
|
2018-08-22 13:37:29 +00:00
|
|
|
ResultOrError<BufferBase*> CreateBufferImpl(const BufferDescriptor* descriptor) override;
|
2018-08-27 21:12:56 +00:00
|
|
|
ResultOrError<ComputePipelineBase*> CreateComputePipelineImpl(
|
|
|
|
const ComputePipelineDescriptor* descriptor) override;
|
2018-06-27 23:21:39 +00:00
|
|
|
ResultOrError<PipelineLayoutBase*> CreatePipelineLayoutImpl(
|
2018-07-25 15:03:23 +00:00
|
|
|
const PipelineLayoutDescriptor* descriptor) override;
|
2018-06-15 00:26:27 +00:00
|
|
|
ResultOrError<QueueBase*> CreateQueueImpl() override;
|
2018-12-10 19:47:22 +00:00
|
|
|
ResultOrError<RenderPipelineBase*> CreateRenderPipelineImpl(
|
|
|
|
const RenderPipelineDescriptor* descriptor) override;
|
2018-07-25 15:03:23 +00:00
|
|
|
ResultOrError<SamplerBase*> CreateSamplerImpl(const SamplerDescriptor* descriptor) override;
|
2018-08-20 15:01:20 +00:00
|
|
|
ResultOrError<ShaderModuleBase*> CreateShaderModuleImpl(
|
|
|
|
const ShaderModuleDescriptor* descriptor) override;
|
2019-02-15 11:15:58 +00:00
|
|
|
ResultOrError<SwapChainBase*> CreateSwapChainImpl(
|
|
|
|
const SwapChainDescriptor* descriptor) override;
|
2018-08-27 00:44:48 +00:00
|
|
|
ResultOrError<TextureBase*> CreateTextureImpl(const TextureDescriptor* descriptor) override;
|
2018-10-12 08:32:58 +00:00
|
|
|
ResultOrError<TextureViewBase*> CreateTextureViewImpl(
|
|
|
|
TextureBase* texture,
|
|
|
|
const TextureViewDescriptor* descriptor) override;
|
2018-05-17 21:09:07 +00:00
|
|
|
|
2019-04-26 07:52:57 +00:00
|
|
|
void InitTogglesFromDriver();
|
2019-12-16 23:36:16 +00:00
|
|
|
void Destroy() override;
|
|
|
|
MaybeError WaitForIdleForDestruction() override;
|
2019-04-26 07:52:57 +00:00
|
|
|
|
2017-11-24 19:12:44 +00:00
|
|
|
id<MTLDevice> mMtlDevice = nil;
|
|
|
|
id<MTLCommandQueue> mCommandQueue = nil;
|
2018-09-06 13:26:48 +00:00
|
|
|
std::unique_ptr<MapRequestTracker> mMapTracker;
|
2017-11-24 19:12:44 +00:00
|
|
|
|
2018-12-01 03:20:19 +00:00
|
|
|
Serial mLastSubmittedSerial = 0;
|
2020-01-13 13:47:01 +00:00
|
|
|
id<MTLCommandBuffer> mPendingCommands = nil;
|
2019-03-22 07:36:34 +00:00
|
|
|
|
|
|
|
// The completed serial is updated in a Metal completion handler that can be fired on a
|
|
|
|
// different thread, so it needs to be atomic.
|
|
|
|
std::atomic<uint64_t> mCompletedSerial;
|
|
|
|
|
|
|
|
// mLastSubmittedCommands will be accessed in a Metal schedule handler that can be fired on
|
|
|
|
// a different thread so we guard access to it with a mutex.
|
|
|
|
std::mutex mLastSubmittedCommandsMutex;
|
|
|
|
id<MTLCommandBuffer> mLastSubmittedCommands = nil;
|
2017-04-20 18:38:20 +00:00
|
|
|
};
|
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
}} // namespace dawn_native::metal
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-07-24 14:42:33 +00:00
|
|
|
#endif // DAWNNATIVE_METAL_DEVICEMTL_H_
|