• 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_dispatch_table.h: Declares dispatch table for CL ICD Loader.
7 
8 #ifndef LIBGLESV2_CL_DISPATCH_TABLE_H_
9 #define LIBGLESV2_CL_DISPATCH_TABLE_H_
10 
11 #include "angle_cl.h"
12 #include "export.h"
13 
14 extern "C" {
15 
16 ANGLE_EXPORT extern const cl_icd_dispatch gCLIcdDispatchTable;
17 
18 }  // extern "C"
19 
20 #endif  // LIBGLESV2_CL_DISPATCH_TABLE_H_
21