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.
|
|
|
|
|
2018-07-25 15:03:23 +00:00
|
|
|
#include "dawn_native/dawn_platform.h"
|
2018-08-02 20:27:57 +00:00
|
|
|
#include "dawn_native/DawnNative.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"] %}
|
2018-08-01 13:12:10 +00:00
|
|
|
#include "dawn_native/{{type.name.CamelCase()}}.h"
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-07-24 14:45:45 +00:00
|
|
|
namespace dawn_native {
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2019-11-13 17:00:37 +00:00
|
|
|
// Type aliases to make all frontend types appear as if they have "Base" at the end when some
|
|
|
|
// of them are actually pure-frontend and don't have the Base.
|
|
|
|
using CommandEncoderBase = CommandEncoder;
|
|
|
|
using ComputePassEncoderBase = ComputePassEncoder;
|
|
|
|
using FenceBase = Fence;
|
|
|
|
using RenderPassEncoderBase = RenderPassEncoder;
|
|
|
|
using RenderBundleEncoderBase = RenderBundleEncoder;
|
2020-01-15 13:14:12 +00:00
|
|
|
using SurfaceBase = Surface;
|
2019-11-13 17:00:37 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
namespace {
|
2019-10-15 12:08:48 +00:00
|
|
|
|
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) %}
|
2017-04-20 18:38:20 +00:00
|
|
|
{% set suffix = as_MethodSuffix(type.name, method.name) %}
|
|
|
|
|
2019-10-15 12:08:48 +00:00
|
|
|
{{as_cType(method.return_type.name)}} Native{{suffix}}(
|
2018-11-20 09:33:35 +00:00
|
|
|
{{-as_cType(type.name)}} cSelf
|
2017-04-20 18:38:20 +00:00
|
|
|
{%- for arg in method.arguments -%}
|
2018-11-20 09:33:35 +00:00
|
|
|
, {{as_annotated_cType(arg)}}
|
2017-04-20 18:38:20 +00:00
|
|
|
{%- endfor -%}
|
|
|
|
) {
|
2018-11-20 09:33:35 +00:00
|
|
|
//* Perform conversion between C types and frontend types
|
|
|
|
auto self = reinterpret_cast<{{as_frontendType(type)}}>(cSelf);
|
|
|
|
|
|
|
|
{% for arg in method.arguments %}
|
|
|
|
{% set varName = as_varName(arg.name) %}
|
|
|
|
{% if arg.type.category in ["enum", "bitmask"] %}
|
|
|
|
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-%}
|
|
|
|
|
2019-04-01 21:48:38 +00:00
|
|
|
{% if method.return_type.name.canonical_case() != "void" %}
|
2017-04-20 18:38:20 +00:00
|
|
|
auto result =
|
|
|
|
{%- endif %}
|
2021-03-29 14:02:05 +00:00
|
|
|
self->API{{method.name.CamelCase()}}(
|
2017-04-20 18:38:20 +00:00
|
|
|
{%- for arg in method.arguments -%}
|
|
|
|
{%- if not loop.first %}, {% endif -%}
|
2018-11-20 09:33:35 +00:00
|
|
|
{{as_varName(arg.name)}}_
|
2017-04-20 18:38:20 +00:00
|
|
|
{%- endfor -%}
|
|
|
|
);
|
|
|
|
{% if method.return_type.name.canonical_case() != "void" %}
|
2018-12-06 10:43:33 +00:00
|
|
|
{% if method.return_type.category == "object" %}
|
|
|
|
return reinterpret_cast<{{as_cType(method.return_type.name)}}>(result);
|
|
|
|
{% else %}
|
|
|
|
return result;
|
|
|
|
{% endif %}
|
2017-04-20 18:38:20 +00:00
|
|
|
{% endif %}
|
|
|
|
}
|
|
|
|
{% endfor %}
|
|
|
|
{% endfor %}
|
2019-10-15 12:08:48 +00:00
|
|
|
|
|
|
|
struct ProcEntry {
|
2019-10-24 23:55:37 +00:00
|
|
|
WGPUProc 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 %}
|
2019-10-24 23:55:37 +00:00
|
|
|
{ reinterpret_cast<WGPUProc>(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]);
|
|
|
|
}
|
|
|
|
|
2020-01-10 13:06:48 +00:00
|
|
|
WGPUInstance NativeCreateInstance(WGPUInstanceDescriptor const* cDescriptor) {
|
|
|
|
const dawn_native::InstanceDescriptor* descriptor =
|
|
|
|
reinterpret_cast<const dawn_native::InstanceDescriptor*>(cDescriptor);
|
|
|
|
return reinterpret_cast<WGPUInstance>(InstanceBase::Create(descriptor));
|
|
|
|
}
|
|
|
|
|
2019-10-24 23:55:37 +00:00
|
|
|
WGPUProc NativeGetProcAddress(WGPUDevice, const char* procName) {
|
2019-10-15 12:08:48 +00:00
|
|
|
if (procName == nullptr) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
// Special case the two free-standing functions of the API.
|
2019-10-21 20:04:10 +00:00
|
|
|
if (strcmp(procName, "wgpuGetProcAddress") == 0) {
|
2019-10-24 23:55:37 +00:00
|
|
|
return reinterpret_cast<WGPUProc>(NativeGetProcAddress);
|
2019-10-15 12:08:48 +00:00
|
|
|
}
|
|
|
|
|
2020-01-10 13:06:48 +00:00
|
|
|
if (strcmp(procName, "wgpuCreateInstance") == 0) {
|
|
|
|
return reinterpret_cast<WGPUProc>(NativeCreateInstance);
|
|
|
|
}
|
|
|
|
|
2019-10-15 12:08:48 +00:00
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2020-10-06 16:13:42 +00:00
|
|
|
static DawnProcTable gProcTable = {
|
|
|
|
NativeGetProcAddress,
|
|
|
|
NativeCreateInstance,
|
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
|
|
|
|
2020-10-06 16:13:42 +00:00
|
|
|
const DawnProcTable& GetProcsAutogen() {
|
|
|
|
return gProcTable;
|
|
|
|
}
|
2017-04-20 18:38:20 +00:00
|
|
|
}
|