• 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 // cl_types.h: Defines common types for the OpenCL Vulkan back end.
7 
8 #ifndef LIBANGLE_RENDERER_VULKAN_CL_TYPES_H_
9 #define LIBANGLE_RENDERER_VULKAN_CL_TYPES_H_
10 
11 #include "libANGLE/renderer/CLtypes.h"
12 
13 namespace rx
14 {
15 
16 class CLContextVk;
17 class CLDeviceVk;
18 class CLPlatformVk;
19 
20 }  // namespace rx
21 
22 #endif  // LIBANGLE_RENDERER_VULKAN_CL_TYPES_H_
23