| Index: cc/output/vulkan_renderer.h
|
| diff --git a/cc/output/vulkan_renderer.h b/cc/output/vulkan_renderer.h
|
| index cdbc038341c0e89ac068723032dcce766f1318d6..59e80b9da5a7efa5ac1839dff909021e1692ab1e 100644
|
| --- a/cc/output/vulkan_renderer.h
|
| +++ b/cc/output/vulkan_renderer.h
|
| @@ -22,7 +22,8 @@
|
| int highp_threshold_min);
|
| ~VulkanRenderer() override;
|
|
|
| - // Implementation of public DirectRenderer functions.
|
| + // Implementation of public Renderer functions.
|
| + const RendererCapabilitiesImpl& Capabilities() const override;
|
| void SwapBuffers(const CompositorFrameMetadata& metadata) override;
|
| void ReceiveSwapBuffersAck(const CompositorFrameAck& ack) override;
|
|
|
| @@ -54,6 +55,8 @@
|
| std::unique_ptr<CopyOutputRequest> request) override;
|
|
|
| private:
|
| + RendererCapabilitiesImpl capabilities_;
|
| +
|
| DISALLOW_COPY_AND_ASSIGN(VulkanRenderer);
|
| };
|
|
|
|
|