2018-07-18 09:40:26 +00:00
|
|
|
//* Copyright 2018 The Dawn Authors
|
2018-05-18 19:07:22 +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.
|
|
|
|
|
|
|
|
#ifndef BACKEND_VALIDATIONUTILS_H_
|
|
|
|
#define BACKEND_VALIDATIONUTILS_H_
|
|
|
|
|
2021-12-16 04:54:38 +00:00
|
|
|
{% set api = metadata.api.lower() %}
|
|
|
|
#include "dawn/{{api}}_cpp.h"
|
2018-05-18 19:07:22 +00:00
|
|
|
|
2021-12-16 04:54:38 +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-16 04:54:38 +00:00
|
|
|
#include "{{native_dir}}/Error.h"
|
2018-05-28 18:26:40 +00:00
|
|
|
|
2021-12-16 04:54:38 +00:00
|
|
|
namespace {{native_namespace}} {
|
2018-05-18 19:07:22 +00:00
|
|
|
|
|
|
|
// Helper functions to check the value of enums and bitmasks
|
|
|
|
{% for type in by_category["enum"] + by_category["bitmask"] %}
|
2021-12-16 04:54:38 +00:00
|
|
|
{% set namespace = metadata.namespace %}
|
|
|
|
MaybeError Validate{{type.name.CamelCase()}}({{namespace}}::{{as_cppType(type.name)}} value);
|
2018-05-18 19:07:22 +00:00
|
|
|
{% endfor %}
|
|
|
|
|
2021-12-16 04:54:38 +00:00
|
|
|
} // namespace {{native_namespace}}
|
2018-05-18 19:07:22 +00:00
|
|
|
|
|
|
|
#endif // BACKEND_VALIDATIONUTILS_H_
|