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// proc_table: 7// Mapping from a string entry point name to function address. 8// 9 10#ifndef LIBGLESV2_PROC_TABLE_CL_H_ 11#define LIBGLESV2_PROC_TABLE_CL_H_ 12 13#include <string> 14#include <unordered_map> 15 16namespace cl 17{ 18 19using ProcTable = std::unordered_map<std::string, void *>; 20 21const ProcTable &GetProcTable(); 22 23} // namespace cl 24 25#endif // LIBGLESV2_PROC_TABLE_CL_H_ 26 27