2018-07-18 09:40:26 +00:00
|
|
|
// Copyright 2017 The Dawn Authors
|
2017-06-05 21:08:55 +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_D3D12_DEVICED3D12_H_
|
|
|
|
#define DAWNNATIVE_D3D12_DEVICED3D12_H_
|
2017-06-05 21:08:55 +00:00
|
|
|
|
2018-07-25 15:03:23 +00:00
|
|
|
#include "dawn_native/dawn_platform.h"
|
2017-06-05 21:08:55 +00:00
|
|
|
|
2018-03-02 16:07:07 +00:00
|
|
|
#include "common/SerialQueue.h"
|
2018-07-24 11:53:51 +00:00
|
|
|
#include "dawn_native/Device.h"
|
2019-10-10 18:06:58 +00:00
|
|
|
#include "dawn_native/d3d12/CommandRecordingContext.h"
|
2018-07-24 11:53:51 +00:00
|
|
|
#include "dawn_native/d3d12/Forward.h"
|
2019-10-09 16:50:42 +00:00
|
|
|
#include "dawn_native/d3d12/ResourceHeapAllocationD3D12.h"
|
2017-06-05 21:13:58 +00:00
|
|
|
|
2018-09-06 13:26:48 +00:00
|
|
|
#include <memory>
|
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
namespace dawn_native { namespace d3d12 {
|
2017-06-05 21:08:55 +00:00
|
|
|
|
2017-06-16 19:23:10 +00:00
|
|
|
class CommandAllocatorManager;
|
2017-06-16 18:26:26 +00:00
|
|
|
class DescriptorHeapAllocator;
|
2018-03-21 00:56:39 +00:00
|
|
|
class MapRequestTracker;
|
2018-08-30 12:20:28 +00:00
|
|
|
class PlatformFunctions;
|
2017-06-16 19:23:10 +00:00
|
|
|
class ResourceAllocator;
|
2019-10-02 21:45:09 +00:00
|
|
|
class ResourceAllocatorManager;
|
2017-06-16 19:23:10 +00:00
|
|
|
|
2019-10-01 02:30:32 +00:00
|
|
|
#define ASSERT_SUCCESS(hr) \
|
|
|
|
{ \
|
|
|
|
HRESULT succeeded = hr; \
|
|
|
|
ASSERT(SUCCEEDED(succeeded)); \
|
|
|
|
}
|
2017-06-05 21:13:58 +00:00
|
|
|
|
2017-06-05 21:08:55 +00:00
|
|
|
// Definition of backend types
|
|
|
|
class Device : public DeviceBase {
|
2017-11-24 19:04:22 +00:00
|
|
|
public:
|
2019-06-12 18:54:57 +00:00
|
|
|
Device(Adapter* adapter, const DeviceDescriptor* descriptor);
|
2017-11-24 19:04:22 +00:00
|
|
|
~Device();
|
|
|
|
|
2019-06-12 18:54:57 +00:00
|
|
|
MaybeError Initialize();
|
|
|
|
|
2019-07-10 20:43:13 +00:00
|
|
|
CommandBufferBase* CreateCommandBuffer(CommandEncoderBase* encoder,
|
|
|
|
const CommandBufferDescriptor* descriptor) override;
|
2017-11-24 19:04:22 +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:04:22 +00:00
|
|
|
|
2019-01-30 16:07:48 +00:00
|
|
|
ComPtr<ID3D12Device> GetD3D12Device() const;
|
|
|
|
ComPtr<ID3D12CommandQueue> GetCommandQueue() const;
|
2018-09-19 00:32:52 +00:00
|
|
|
|
2019-06-10 20:56:27 +00:00
|
|
|
ComPtr<ID3D12CommandSignature> GetDispatchIndirectSignature() const;
|
|
|
|
ComPtr<ID3D12CommandSignature> GetDrawIndirectSignature() const;
|
|
|
|
ComPtr<ID3D12CommandSignature> GetDrawIndexedIndirectSignature() const;
|
|
|
|
|
2019-01-30 16:07:48 +00:00
|
|
|
DescriptorHeapAllocator* GetDescriptorHeapAllocator() const;
|
2018-03-21 00:56:39 +00:00
|
|
|
MapRequestTracker* GetMapRequestTracker() const;
|
2019-01-30 16:07:48 +00:00
|
|
|
ResourceAllocator* GetResourceAllocator() const;
|
2019-10-10 18:06:58 +00:00
|
|
|
CommandAllocatorManager* GetCommandAllocatorManager() const;
|
2019-01-30 16:07:48 +00:00
|
|
|
|
|
|
|
const PlatformFunctions* GetFunctions() const;
|
|
|
|
ComPtr<IDXGIFactory4> GetFactory() const;
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2019-10-10 18:06:58 +00:00
|
|
|
ResultOrError<CommandRecordingContext*> GetPendingCommandContext();
|
2019-01-29 00:10:07 +00:00
|
|
|
Serial GetPendingCommandSerial() const override;
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2019-10-16 09:26:54 +00:00
|
|
|
MaybeError NextSerial();
|
|
|
|
MaybeError WaitForSerial(Serial serial);
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2018-03-02 16:07:07 +00:00
|
|
|
void ReferenceUntilUnused(ComPtr<IUnknown> object);
|
|
|
|
|
2019-10-10 18:06:58 +00:00
|
|
|
MaybeError ExecuteCommandContext(CommandRecordingContext* commandContext);
|
2017-11-24 19:04:22 +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
|
|
|
|
2019-10-09 16:50:42 +00:00
|
|
|
ResultOrError<ResourceHeapAllocation> AllocateMemory(
|
2019-08-27 23:36:26 +00:00
|
|
|
D3D12_HEAP_TYPE heapType,
|
|
|
|
const D3D12_RESOURCE_DESC& resourceDescriptor,
|
|
|
|
D3D12_RESOURCE_STATES initialUsage,
|
|
|
|
D3D12_HEAP_FLAGS heapFlags);
|
|
|
|
|
2019-10-09 16:50:42 +00:00
|
|
|
void DeallocateMemory(ResourceHeapAllocation& allocation);
|
2019-08-27 23:36:26 +00:00
|
|
|
|
2019-09-02 19:19:34 +00:00
|
|
|
TextureBase* WrapSharedHandle(const TextureDescriptor* descriptor, HANDLE sharedHandle);
|
|
|
|
|
2017-11-24 19:04:22 +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-09-06 13:26:48 +00:00
|
|
|
|
2018-12-01 03:20:19 +00:00
|
|
|
Serial mCompletedSerial = 0;
|
|
|
|
Serial mLastSubmittedSerial = 0;
|
2017-11-24 19:04:22 +00:00
|
|
|
ComPtr<ID3D12Fence> mFence;
|
2019-08-23 22:41:48 +00:00
|
|
|
HANDLE mFenceEvent = nullptr;
|
2017-11-24 19:04:22 +00:00
|
|
|
|
2019-06-12 18:54:57 +00:00
|
|
|
ComPtr<ID3D12Device> mD3d12Device; // Device is owned by adapter and will not be outlived.
|
2017-11-24 19:04:22 +00:00
|
|
|
ComPtr<ID3D12CommandQueue> mCommandQueue;
|
|
|
|
|
2019-06-10 20:56:27 +00:00
|
|
|
ComPtr<ID3D12CommandSignature> mDispatchIndirectSignature;
|
|
|
|
ComPtr<ID3D12CommandSignature> mDrawIndirectSignature;
|
|
|
|
ComPtr<ID3D12CommandSignature> mDrawIndexedIndirectSignature;
|
|
|
|
|
2019-10-10 18:06:58 +00:00
|
|
|
CommandRecordingContext mPendingCommands;
|
2018-03-02 16:07:07 +00:00
|
|
|
|
|
|
|
SerialQueue<ComPtr<IUnknown>> mUsedComObjectRefs;
|
2018-09-06 13:26:48 +00:00
|
|
|
|
|
|
|
std::unique_ptr<CommandAllocatorManager> mCommandAllocatorManager;
|
|
|
|
std::unique_ptr<DescriptorHeapAllocator> mDescriptorHeapAllocator;
|
|
|
|
std::unique_ptr<MapRequestTracker> mMapRequestTracker;
|
|
|
|
std::unique_ptr<ResourceAllocator> mResourceAllocator;
|
2019-10-02 21:45:09 +00:00
|
|
|
std::unique_ptr<ResourceAllocatorManager> mResourceAllocatorManager;
|
2019-08-27 23:36:26 +00:00
|
|
|
|
2018-09-19 00:32:52 +00:00
|
|
|
dawn_native::PCIInfo mPCIInfo;
|
2017-06-05 21:08:55 +00:00
|
|
|
};
|
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
}} // namespace dawn_native::d3d12
|
2017-06-05 21:08:55 +00:00
|
|
|
|
2018-07-24 14:42:33 +00:00
|
|
|
#endif // DAWNNATIVE_D3D12_DEVICED3D12_H_
|