2018-07-18 09:40:26 +00:00
|
|
|
//* Copyright 2017 The Dawn Authors
|
2017-04-20 18:38:20 +00:00
|
|
|
//*
|
|
|
|
//* 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.
|
|
|
|
|
2021-12-05 05:29:44 +00:00
|
|
|
{% set Prefix = metadata.proc_table_prefix %}
|
|
|
|
{% set prefix = Prefix.lower() %}
|
2021-12-22 06:12:13 +00:00
|
|
|
{% set impl_dir = metadata.impl_dir + "/" if metadata.impl_dir else "" %}
|
2022-01-12 09:17:35 +00:00
|
|
|
{% set namespace_name = Name(metadata.native_namespace) %}
|
|
|
|
{% set native_namespace = namespace_name.namespace_case() %}
|
2022-02-04 17:07:46 +00:00
|
|
|
{% set native_dir = impl_dir + namespace_name.Dirs() %}
|
2021-12-22 06:12:13 +00:00
|
|
|
#include "{{native_dir}}/{{prefix}}_platform.h"
|
|
|
|
#include "{{native_dir}}/{{Prefix}}Native.h"
|
2019-10-15 12:08:48 +00:00
|
|
|
|
2019-10-16 15:36:12 +00:00
|
|
|
#include <algorithm>
|
2019-10-15 12:08:48 +00:00
|
|
|
#include <vector>
|
2018-08-01 13:12:10 +00:00
|
|
|
|
|
|
|
{% for type in by_category["object"] %}
|
2019-04-01 21:48:38 +00:00
|
|
|
{% if type.name.canonical_case() not in ["texture view"] %}
|
2021-12-22 06:12:13 +00:00
|
|
|
#include "{{native_dir}}/{{type.name.CamelCase()}}.h"
|
2018-08-01 13:12:10 +00:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2021-12-22 06:12:13 +00:00
|
|
|
namespace {{native_namespace}} {
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2021-12-09 20:03:48 +00:00
|
|
|
{% for type in by_category["object"] %}
|
|
|
|
{% for method in c_methods(type) %}
|
|
|
|
{% set suffix = as_MethodSuffix(type.name, method.name) %}
|
|
|
|
|
|
|
|
{{as_cType(method.return_type.name)}} Native{{suffix}}(
|
|
|
|
{{-as_cType(type.name)}} cSelf
|
|
|
|
{%- for arg in method.arguments -%}
|
|
|
|
, {{as_annotated_cType(arg)}}
|
|
|
|
{%- endfor -%}
|
|
|
|
) {
|
|
|
|
//* Perform conversion between C types and frontend types
|
|
|
|
auto self = FromAPI(cSelf);
|
2019-10-15 12:08:48 +00:00
|
|
|
|
2021-12-09 20:03:48 +00:00
|
|
|
{% for arg in method.arguments %}
|
|
|
|
{% set varName = as_varName(arg.name) %}
|
2021-12-15 00:12:30 +00:00
|
|
|
{% if arg.type.category in ["enum", "bitmask"] and arg.annotation == "value" %}
|
2021-12-09 20:03:48 +00:00
|
|
|
auto {{varName}}_ = static_cast<{{as_frontendType(arg.type)}}>({{varName}});
|
|
|
|
{% elif arg.annotation != "value" or arg.type.category == "object" %}
|
|
|
|
auto {{varName}}_ = reinterpret_cast<{{decorate("", as_frontendType(arg.type), arg)}}>({{varName}});
|
|
|
|
{% else %}
|
|
|
|
auto {{varName}}_ = {{as_varName(arg.name)}};
|
|
|
|
{% endif %}
|
|
|
|
{%- endfor-%}
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2021-12-09 20:03:48 +00:00
|
|
|
{% if method.return_type.name.canonical_case() != "void" %}
|
|
|
|
auto result =
|
|
|
|
{%- endif %}
|
|
|
|
self->API{{method.name.CamelCase()}}(
|
2017-04-20 18:38:20 +00:00
|
|
|
{%- for arg in method.arguments -%}
|
2021-12-09 20:03:48 +00:00
|
|
|
{%- if not loop.first %}, {% endif -%}
|
|
|
|
{{as_varName(arg.name)}}_
|
2017-04-20 18:38:20 +00:00
|
|
|
{%- endfor -%}
|
2021-12-09 20:03:48 +00:00
|
|
|
);
|
|
|
|
{% if method.return_type.name.canonical_case() != "void" %}
|
2022-06-08 14:46:41 +00:00
|
|
|
{% if method.return_type.category in ["object", "enum", "bitmask"] %}
|
2021-12-09 20:03:48 +00:00
|
|
|
return ToAPI(result);
|
|
|
|
{% else %}
|
|
|
|
return result;
|
2017-04-20 18:38:20 +00:00
|
|
|
{% endif %}
|
2021-12-09 20:03:48 +00:00
|
|
|
{% endif %}
|
|
|
|
}
|
2017-04-20 18:38:20 +00:00
|
|
|
{% endfor %}
|
2021-12-09 20:03:48 +00:00
|
|
|
{% endfor %}
|
|
|
|
|
2022-04-12 16:46:01 +00:00
|
|
|
{% for function in by_category["function"] if function.name.canonical_case() != "get proc address" %}
|
|
|
|
{{as_cType(function.return_type.name)}} Native{{function.name.CamelCase()}}(
|
|
|
|
{%- for arg in function.arguments -%}
|
|
|
|
{%- if not loop.first %}, {% endif -%}
|
|
|
|
{{as_annotated_cType(arg)}}
|
|
|
|
{%- endfor -%}
|
|
|
|
) {
|
|
|
|
{% for arg in function.arguments %}
|
|
|
|
{% set varName = as_varName(arg.name) %}
|
|
|
|
{% if arg.type.category in ["enum", "bitmask"] and arg.annotation == "value" %}
|
|
|
|
auto {{varName}}_ = static_cast<{{as_frontendType(arg.type)}}>({{varName}});
|
|
|
|
{% elif arg.annotation != "value" or arg.type.category == "object" %}
|
|
|
|
auto {{varName}}_ = reinterpret_cast<{{decorate("", as_frontendType(arg.type), arg)}}>({{varName}});
|
|
|
|
{% else %}
|
|
|
|
auto {{varName}}_ = {{as_varName(arg.name)}};
|
|
|
|
{% endif %}
|
|
|
|
{%- endfor-%}
|
|
|
|
|
|
|
|
{% if function.return_type.name.canonical_case() != "void" %}
|
|
|
|
auto result =
|
|
|
|
{%- endif %}
|
|
|
|
API{{function.name.CamelCase()}}(
|
|
|
|
{%- for arg in function.arguments -%}
|
|
|
|
{%- if not loop.first %}, {% endif -%}
|
|
|
|
{{as_varName(arg.name)}}_
|
|
|
|
{%- endfor -%}
|
|
|
|
);
|
|
|
|
{% if function.return_type.name.canonical_case() != "void" %}
|
2022-06-08 14:46:41 +00:00
|
|
|
{% if function.return_type.category in ["object", "enum", "bitmask"] %}
|
2022-04-12 16:46:01 +00:00
|
|
|
return ToAPI(result);
|
|
|
|
{% else %}
|
|
|
|
return result;
|
|
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
{% endfor %}
|
|
|
|
|
2021-12-09 20:03:48 +00:00
|
|
|
namespace {
|
2019-10-15 12:08:48 +00:00
|
|
|
|
2021-12-22 06:12:13 +00:00
|
|
|
{% set c_prefix = metadata.c_prefix %}
|
2019-10-15 12:08:48 +00:00
|
|
|
struct ProcEntry {
|
2021-12-22 06:12:13 +00:00
|
|
|
{{c_prefix}}Proc proc;
|
2019-10-15 12:08:48 +00:00
|
|
|
const char* name;
|
|
|
|
};
|
|
|
|
static const ProcEntry sProcMap[] = {
|
2019-11-22 14:02:52 +00:00
|
|
|
{% for (type, method) in c_methods_sorted_by_name %}
|
2021-12-22 06:12:13 +00:00
|
|
|
{ reinterpret_cast<{{c_prefix}}Proc>(Native{{as_MethodSuffix(type.name, method.name)}}), "{{as_cMethod(type.name, method.name)}}" },
|
2019-10-15 12:08:48 +00:00
|
|
|
{% endfor %}
|
|
|
|
};
|
|
|
|
static constexpr size_t sProcMapSize = sizeof(sProcMap) / sizeof(sProcMap[0]);
|
2021-12-09 20:03:48 +00:00
|
|
|
|
|
|
|
} // anonymous namespace
|
2019-10-15 12:08:48 +00:00
|
|
|
|
2022-04-12 16:46:01 +00:00
|
|
|
WGPUProc NativeGetProcAddress(WGPUDevice, const char* procName) {
|
|
|
|
if (procName == nullptr) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
2019-10-15 12:08:48 +00:00
|
|
|
|
2022-04-12 16:46:01 +00:00
|
|
|
const ProcEntry* entry = std::lower_bound(&sProcMap[0], &sProcMap[sProcMapSize], procName,
|
|
|
|
[](const ProcEntry &a, const char *b) -> bool {
|
|
|
|
return strcmp(a.name, b) < 0;
|
|
|
|
}
|
|
|
|
);
|
|
|
|
|
|
|
|
if (entry != &sProcMap[sProcMapSize] && strcmp(entry->name, procName) == 0) {
|
|
|
|
return entry->proc;
|
2020-01-10 13:06:48 +00:00
|
|
|
}
|
|
|
|
|
2022-04-12 16:46:01 +00:00
|
|
|
// Special case the free-standing functions of the API.
|
|
|
|
// TODO(dawn:1238) Checking string one by one is slow, it needs to be optimized.
|
|
|
|
{% for function in by_category["function"] %}
|
|
|
|
if (strcmp(procName, "{{as_cMethod(None, function.name)}}") == 0) {
|
|
|
|
return reinterpret_cast<{{c_prefix}}Proc>(Native{{as_cppType(function.name)}});
|
|
|
|
}
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
return nullptr;
|
|
|
|
}
|
2019-10-15 12:08:48 +00:00
|
|
|
|
2019-10-16 15:31:31 +00:00
|
|
|
std::vector<const char*> GetProcMapNamesForTestingInternal() {
|
2019-10-15 12:08:48 +00:00
|
|
|
std::vector<const char*> result;
|
|
|
|
result.reserve(sProcMapSize);
|
|
|
|
for (const ProcEntry& entry : sProcMap) {
|
|
|
|
result.push_back(entry.name);
|
|
|
|
}
|
|
|
|
return result;
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|
|
|
|
|
2021-12-05 05:29:44 +00:00
|
|
|
static {{Prefix}}ProcTable gProcTable = {
|
|
|
|
{% for function in by_category["function"] %}
|
|
|
|
Native{{as_cppType(function.name)}},
|
|
|
|
{% endfor %}
|
2017-04-20 18:38:20 +00:00
|
|
|
{% for type in by_category["object"] %}
|
2019-11-22 14:02:52 +00:00
|
|
|
{% for method in c_methods(type) %}
|
2020-10-06 16:13:42 +00:00
|
|
|
Native{{as_MethodSuffix(type.name, method.name)}},
|
2017-04-20 18:38:20 +00:00
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
2020-10-06 16:13:42 +00:00
|
|
|
};
|
2020-10-05 22:35:40 +00:00
|
|
|
|
2021-12-05 05:29:44 +00:00
|
|
|
const {{Prefix}}ProcTable& GetProcsAutogen() {
|
2020-10-06 16:13:42 +00:00
|
|
|
return gProcTable;
|
|
|
|
}
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|