Standardize header guards for libdawn headers
This commit is contained in:
parent
6c27fd9c94
commit
e37234cd22
|
@ -12,8 +12,8 @@
|
|||
//* See the License for the specific language governing permissions and
|
||||
//* limitations under the License.
|
||||
|
||||
#ifndef DAWN_H
|
||||
#define DAWN_H
|
||||
#ifndef DAWN_DAWN_H_
|
||||
#define DAWN_DAWN_H_
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
@ -100,4 +100,4 @@ void dawnSetProcs(const dawnProcTable* procs);
|
|||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // DAWN_H
|
||||
#endif // DAWN_DAWN_H_
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
//* See the License for the specific language governing permissions and
|
||||
//* limitations under the License.
|
||||
|
||||
#ifndef DAWNCPP_H
|
||||
#define DAWNCPP_H
|
||||
#ifndef DAWN_DAWNCPP_H_
|
||||
#define DAWN_DAWNCPP_H_
|
||||
|
||||
#include "dawn.h"
|
||||
|
||||
|
@ -160,4 +160,4 @@ namespace dawn {
|
|||
|
||||
} // namespace dawn
|
||||
|
||||
#endif // DAWNCPP_H
|
||||
#endif // DAWN_DAWNCPP_H_
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
//* See the License for the specific language governing permissions and
|
||||
//* limitations under the License.
|
||||
|
||||
#ifndef DAWNCPP_TRAITS_H
|
||||
#define DAWNCPP_TRAITS_H
|
||||
#ifndef DAWN_DAWNCPP_TRAITS_H_
|
||||
#define DAWN_DAWNCPP_TRAITS_H_
|
||||
|
||||
#include "dawncpp.h"
|
||||
|
||||
|
@ -40,4 +40,4 @@ namespace dawn {
|
|||
|
||||
}
|
||||
|
||||
#endif // DAWNCPP_TRAITS_H
|
||||
#endif // DAWN_DAWNCPP_TRAITS_H_
|
||||
|
|
|
@ -1,19 +1,19 @@
|
|||
//* Copyright 2017 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.
|
||||
// Copyright 2017 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_WSI_H
|
||||
#define DAWN_WSI_H
|
||||
#ifndef DAWN_DAWN_WSI_H_
|
||||
#define DAWN_DAWN_WSI_H_
|
||||
|
||||
#include <dawn/dawn.h>
|
||||
|
||||
|
@ -82,4 +82,4 @@ typedef struct {
|
|||
} dawnWSIContextVulkan;
|
||||
#endif
|
||||
|
||||
#endif // DAWN_WSI_H
|
||||
#endif // DAWN_DAWN_WSI_H
|
||||
|
|
Loading…
Reference in New Issue