Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/angle
Path: blob/main_old/src/libGLESv2/proc_table_cl.h
1693 views
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
16
namespace cl
17
{
18
19
using ProcTable = std::unordered_map<std::string, void *>;
20
21
const ProcTable &GetProcTable();
22
23
} // namespace cl
24
25
#endif // LIBGLESV2_PROC_TABLE_CL_H_
26
27