• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //
2 // Copyright 2021 The ANGLE Project Authors. All rights reserved.
3 // Use of this source code is governed by a BSD-style license that can be
4 // found in the LICENSE file.
5 //
6 // CLCommandQueueVk.h: Defines the class interface for CLCommandQueueVk,
7 // implementing CLCommandQueueImpl.
8 
9 #ifndef LIBANGLE_RENDERER_VULKAN_CLCOMMANDQUEUEVK_H_
10 #define LIBANGLE_RENDERER_VULKAN_CLCOMMANDQUEUEVK_H_
11 
12 #include "libANGLE/renderer/vulkan/cl_types.h"
13 
14 #include "libANGLE/renderer/CLCommandQueueImpl.h"
15 
16 namespace rx
17 {
18 
19 class CLCommandQueueVk : public CLCommandQueueImpl
20 {
21   public:
22     CLCommandQueueVk(const cl::CommandQueue &commandQueue);
23     ~CLCommandQueueVk() override;
24 };
25 
26 }  // namespace rx
27 
28 #endif  // LIBANGLE_RENDERER_VULKAN_CLCOMMANDQUEUEVK_H_
29