• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2018 The Amber Authors.
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 //     http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14 
15 #ifndef SRC_DAWN_ENGINE_DAWN_H_
16 #define SRC_DAWN_ENGINE_DAWN_H_
17 
18 #include <cstdint>
19 #include <string>
20 #include <unordered_map>
21 #include <vector>
22 
23 #include "dawn/dawncpp.h"
24 #include "src/cast_hash.h"
25 #include "src/command.h"
26 #include "src/dawn/pipeline_info.h"
27 #include "src/engine.h"
28 
29 namespace amber {
30 namespace dawn {
31 
32 /// Engine implementation using the Dawn API.
33 class EngineDawn : public Engine {
34  public:
35   EngineDawn();
36   ~EngineDawn() override;
37 
38   // Engine
39   // Initialize with given configuration data.
40   Result Initialize(EngineConfig* config,
41                     Delegate*,
42                     const std::vector<std::string>& features,
43                     const std::vector<std::string>& instance_extensions,
44                     const std::vector<std::string>& device_extensions) override;
45 
46   // Record info for a pipeline.  The Dawn render pipeline will be created
47   // later.  Assumes necessary shader modules have been created.  A compute
48   // pipeline requires a compute shader.  A graphics pipeline requires a vertex
49   // and a fragment shader.
50   Result CreatePipeline(::amber::Pipeline*) override;
51 
52   Result DoClearColor(const ClearColorCommand* cmd) override;
53   Result DoClearStencil(const ClearStencilCommand* cmd) override;
54   Result DoClearDepth(const ClearDepthCommand* cmd) override;
55   Result DoClear(const ClearCommand* cmd) override;
56   Result DoDrawRect(const DrawRectCommand* cmd) override;
57   Result DoDrawArrays(const DrawArraysCommand* cmd) override;
58   Result DoCompute(const ComputeCommand* cmd) override;
59   Result DoEntryPoint(const EntryPointCommand* cmd) override;
60   Result DoPatchParameterVertices(
61       const PatchParameterVerticesCommand* cmd) override;
62   Result DoBuffer(const BufferCommand* cmd) override;
63 
64  private:
65   // Returns the Dawn-specific render pipeline for the given command,
66   // if it exists.  Returns nullptr otherwise.
GetRenderPipeline(const::amber::PipelineCommand * command)67   RenderPipelineInfo* GetRenderPipeline(
68       const ::amber::PipelineCommand* command) {
69     return pipeline_map_[command->GetPipeline()].render_pipeline.get();
70   }
71   // Returns the Dawn-specific compute pipeline for the given command,
72   // if it exists.  Returns nullptr otherwise.
GetComputePipeline(const::amber::PipelineCommand * command)73   ComputePipelineInfo* GetComputePipeline(
74       const ::amber::PipelineCommand* command) {
75     return pipeline_map_[command->GetPipeline()].compute_pipeline.get();
76   }
77   // Creates and attaches index, vertex, storage, uniform and depth-stencil
78   // buffers. Sets up bindings. Also creates textures and texture views if not
79   // created yet. Used in the Graphics pipeline creation.
80   Result AttachBuffersAndTextures(RenderPipelineInfo* render_pipeline);
81   // Creates and attaches index, vertex, storage, uniform and depth-stencil
82   // buffers. Used in the Compute pipeline creation.
83   Result AttachBuffers(ComputePipelineInfo* compute_pipeline);
84   // Creates and submits a command to copy dawn textures back to amber color
85   // attachments.
86   Result MapDeviceTextureToHostBuffer(const RenderPipelineInfo& render_pipeline,
87                                       const ::dawn::Device& device);
88   // Creates and submits a command to copy dawn buffers back to amber buffers
89   Result MapDeviceBufferToHostBuffer(
90       const ComputePipelineInfo& compute_pipeline,
91       const ::dawn::Device& device);
92 
93   // Borrowed from the engine config
94   ::dawn::Device* device_ = nullptr;
95   // Dawn color attachment textures
96   std::vector<::dawn::Texture> textures_;
97   // Views into Dawn color attachment textures
98   std::vector<::dawn::TextureView> texture_views_;
99   // Dawn depth/stencil texture
100   ::dawn::Texture depth_stencil_texture_;
101   // Mapping from the generic engine's Pipeline object to our own Dawn-specific
102   // pipelines.
103   std::unordered_map<amber::Pipeline*, ::amber::dawn::Pipeline> pipeline_map_;
104 };
105 
106 }  // namespace dawn
107 }  // namespace amber
108 
109 #endif  // SRC_DAWN_ENGINE_DAWN_H_
110