2019-10-15 11:44:38 +00:00
|
|
|
//* Copyright 2019 The Dawn Authors
|
|
|
|
//*
|
|
|
|
//* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
//* you may not use this file except in compliance with the License.
|
|
|
|
//* You may obtain a copy of the License at
|
|
|
|
//*
|
|
|
|
//* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//*
|
|
|
|
//* Unless required by applicable law or agreed to in writing, software
|
|
|
|
//* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
//* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
//* See the License for the specific language governing permissions and
|
|
|
|
//* limitations under the License.
|
|
|
|
|
|
|
|
#ifndef DAWN_DAWN_PROC_TABLE_H_
|
|
|
|
#define DAWN_DAWN_PROC_TABLE_H_
|
|
|
|
|
2019-10-21 20:04:10 +00:00
|
|
|
#include "dawn/webgpu.h"
|
2019-10-15 11:44:38 +00:00
|
|
|
|
|
|
|
typedef struct DawnProcTable {
|
2019-10-21 20:04:10 +00:00
|
|
|
WGPUProcGetProcAddress getProcAddress;
|
2020-01-10 13:06:48 +00:00
|
|
|
WGPUProcCreateInstance createInstance;
|
2019-10-15 12:08:48 +00:00
|
|
|
|
2019-10-15 11:44:38 +00:00
|
|
|
{% for type in by_category["object"] %}
|
2019-11-22 14:02:52 +00:00
|
|
|
{% for method in c_methods(type) %}
|
2019-10-15 11:44:38 +00:00
|
|
|
{{as_cProc(type.name, method.name)}} {{as_varName(type.name, method.name)}};
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
} DawnProcTable;
|
|
|
|
|
|
|
|
#endif // DAWN_DAWN_PROC_TABLE_H_
|