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-18 13:23:06 +00:00
|
|
|
#ifndef DAWN_H
|
|
|
|
#define DAWN_H
|
2017-04-20 18:38:20 +00:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
{% for type in by_category["object"] %}
|
|
|
|
typedef struct {{as_cType(type.name)}}Impl* {{as_cType(type.name)}};
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% for type in by_category["enum"] + by_category["bitmask"] %}
|
|
|
|
typedef enum {
|
|
|
|
{% for value in type.values %}
|
|
|
|
{{as_cEnum(type.name, value.name)}} = 0x{{format(value.value, "08X")}},
|
|
|
|
{% endfor %}
|
|
|
|
{{as_cEnum(type.name, Name("force32"))}} = 0x7FFFFFFF
|
|
|
|
} {{as_cType(type.name)}};
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
2018-05-17 20:55:53 +00:00
|
|
|
{% for type in by_category["structure"] %}
|
|
|
|
typedef struct {
|
|
|
|
{% if type.extensible %}
|
|
|
|
const void* nextInChain;
|
|
|
|
{% endif %}
|
|
|
|
{% for member in type.members %}
|
|
|
|
{{as_annotated_cType(member)}};
|
|
|
|
{% endfor %}
|
|
|
|
} {{as_cType(type.name)}};
|
|
|
|
{% endfor %}
|
|
|
|
|
2017-04-20 18:42:36 +00:00
|
|
|
// Custom types depending on the target language
|
2018-07-18 13:12:52 +00:00
|
|
|
typedef uint64_t dawnCallbackUserdata;
|
|
|
|
typedef void (*dawnDeviceErrorCallback)(const char* message, dawnCallbackUserdata userdata);
|
|
|
|
typedef void (*dawnBuilderErrorCallback)(dawnBuilderErrorStatus status, const char* message, dawnCallbackUserdata userdata1, dawnCallbackUserdata userdata2);
|
|
|
|
typedef void (*dawnBufferMapReadCallback)(dawnBufferMapAsyncStatus status, const void* data, dawnCallbackUserdata userdata);
|
|
|
|
typedef void (*dawnBufferMapWriteCallback)(dawnBufferMapAsyncStatus status, void* data, dawnCallbackUserdata userdata);
|
2017-04-20 18:42:36 +00:00
|
|
|
|
2017-04-20 18:38:20 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
{% for type in by_category["object"] %}
|
|
|
|
// Procs of {{type.name.CamelCase()}}
|
|
|
|
{% for method in native_methods(type) %}
|
|
|
|
typedef {{as_cType(method.return_type.name)}} (*{{as_cProc(type.name, method.name)}})(
|
|
|
|
{{-as_cType(type.name)}} {{as_varName(type.name)}}
|
|
|
|
{%- for arg in method.arguments -%}
|
|
|
|
, {{as_annotated_cType(arg)}}
|
|
|
|
{%- endfor -%}
|
|
|
|
);
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
2018-07-18 13:15:07 +00:00
|
|
|
struct dawnProcTable_s {
|
2017-04-20 18:38:20 +00:00
|
|
|
{% for type in by_category["object"] %}
|
|
|
|
{% for method in native_methods(type) %}
|
|
|
|
{{as_cProc(type.name, method.name)}} {{as_varName(type.name, method.name)}};
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
};
|
2018-07-18 13:15:07 +00:00
|
|
|
typedef struct dawnProcTable_s dawnProcTable;
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-07-18 13:15:07 +00:00
|
|
|
// Stuff below is for convenience and will forward calls to a static dawnProcTable.
|
2017-04-20 18:38:20 +00:00
|
|
|
|
2018-07-18 13:15:07 +00:00
|
|
|
// Set which dawnProcTable will be used
|
|
|
|
void dawnSetProcs(const dawnProcTable* procs);
|
2017-04-20 18:38:20 +00:00
|
|
|
|
|
|
|
{% for type in by_category["object"] %}
|
|
|
|
// Methods of {{type.name.CamelCase()}}
|
|
|
|
{% for method in native_methods(type) %}
|
|
|
|
{{as_cType(method.return_type.name)}} {{as_cMethod(type.name, method.name)}}(
|
|
|
|
{{-as_cType(type.name)}} {{as_varName(type.name)}}
|
|
|
|
{%- for arg in method.arguments -%}
|
|
|
|
, {{as_annotated_cType(arg)}}
|
|
|
|
{%- endfor -%}
|
|
|
|
);
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
} // extern "C"
|
|
|
|
#endif
|
|
|
|
|
2018-07-18 13:23:06 +00:00
|
|
|
#endif // DAWN_H
|