• 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 pass-through back end.
7 
8 #ifndef LIBANGLE_RENDERER_CL_CL_TYPES_H_
9 #define LIBANGLE_RENDERER_CL_CL_TYPES_H_
10 
11 #include "libANGLE/renderer/CLtypes.h"
12 
13 namespace rx
14 {
15 
16 class CLCommandQueueCL;
17 class CLContextCL;
18 class CLDeviceCL;
19 class CLEventCL;
20 class CLKernelCL;
21 class CLMemoryCL;
22 class CLPlatformCL;
23 class CLProgramCL;
24 class CLSamplerCL;
25 
26 }  // namespace rx
27 
28 #endif  // LIBANGLE_RENDERER_CL_CL_TYPES_H_
29