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
|
|
|
|
|
|
|
#import <Metal/Metal.h>
|
|
|
|
#import <QuartzCore/CAMetalLayer.h>
|
2018-09-06 13:26:48 +00:00
|
|
|
|
|
|
|
#include <memory>
|
2017-11-24 19:12:44 +00:00
|
|
|
#include <type_traits>
|
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
|
|
|
class ResourceUploader;
|
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
class Device : public DeviceBase {
|
2017-11-24 19:12:44 +00:00
|
|
|
public:
|
|
|
|
Device(id<MTLDevice> mtlDevice);
|
|
|
|
~Device();
|
|
|
|
|
|
|
|
CommandBufferBase* CreateCommandBuffer(CommandBufferBuilder* builder) override;
|
|
|
|
InputStateBase* CreateInputState(InputStateBuilder* builder) override;
|
2018-05-11 17:04:44 +00:00
|
|
|
RenderPassDescriptorBase* CreateRenderPassDescriptor(
|
|
|
|
RenderPassDescriptorBuilder* builder) override;
|
2017-11-24 19:12:44 +00:00
|
|
|
SwapChainBase* CreateSwapChain(SwapChainBuilder* builder) override;
|
|
|
|
|
2018-12-01 03:20:19 +00:00
|
|
|
Serial GetCompletedCommandSerial() const final override;
|
|
|
|
Serial GetLastSubmittedCommandSerial() const final override;
|
2017-11-24 19:12:44 +00:00
|
|
|
void TickImpl() override;
|
|
|
|
|
2018-09-19 00:32:52 +00:00
|
|
|
const dawn_native::PCIInfo& GetPCIInfo() const override;
|
|
|
|
|
2017-11-24 19:12:44 +00:00
|
|
|
id<MTLDevice> GetMTLDevice();
|
|
|
|
|
|
|
|
id<MTLCommandBuffer> GetPendingCommandBuffer();
|
2018-12-01 03:20:19 +00:00
|
|
|
Serial GetPendingCommandSerial() const;
|
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
|
|
|
ResourceUploader* GetResourceUploader() const;
|
|
|
|
|
|
|
|
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;
|
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-09-19 00:32:52 +00:00
|
|
|
void CollectPCIInfo();
|
2018-05-17 21:09:07 +00:00
|
|
|
|
2017-11-24 19:12:44 +00:00
|
|
|
void OnCompletedHandler();
|
|
|
|
|
|
|
|
id<MTLDevice> mMtlDevice = nil;
|
|
|
|
id<MTLCommandQueue> mCommandQueue = nil;
|
2018-09-06 13:26:48 +00:00
|
|
|
std::unique_ptr<MapRequestTracker> mMapTracker;
|
|
|
|
std::unique_ptr<ResourceUploader> mResourceUploader;
|
2017-11-24 19:12:44 +00:00
|
|
|
|
2018-12-01 03:20:19 +00:00
|
|
|
Serial mCompletedSerial = 0;
|
|
|
|
Serial mLastSubmittedSerial = 0;
|
2017-11-24 19:12:44 +00:00
|
|
|
id<MTLCommandBuffer> mPendingCommands = nil;
|
2018-09-19 00:32:52 +00:00
|
|
|
|
|
|
|
dawn_native::PCIInfo mPCIInfo;
|
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_
|