Rename NXT -> DAWN in header guards
This commit is contained in:
parent
0927ea549c
commit
a5ee52d33e
|
@ -12,8 +12,8 @@
|
|||
//* See the License for the specific language governing permissions and
|
||||
//* limitations under the License.
|
||||
|
||||
#ifndef NXT_H
|
||||
#define NXT_H
|
||||
#ifndef DAWN_H
|
||||
#define DAWN_H
|
||||
|
||||
#include <stdint.h>
|
||||
#include <stddef.h>
|
||||
|
@ -100,4 +100,4 @@ void dawnSetProcs(const dawnProcTable* procs);
|
|||
} // extern "C"
|
||||
#endif
|
||||
|
||||
#endif // NXT_H
|
||||
#endif // DAWN_H
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
//* See the License for the specific language governing permissions and
|
||||
//* limitations under the License.
|
||||
|
||||
#ifndef NXTCPP_H
|
||||
#define NXTCPP_H
|
||||
#ifndef DAWNCPP_H
|
||||
#define DAWNCPP_H
|
||||
|
||||
#include "dawn.h"
|
||||
|
||||
|
@ -160,4 +160,4 @@ namespace dawn {
|
|||
|
||||
} // namespace dawn
|
||||
|
||||
#endif // NXTCPP_H
|
||||
#endif // DAWNCPP_H
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
//* See the License for the specific language governing permissions and
|
||||
//* limitations under the License.
|
||||
|
||||
#ifndef NXTCPP_TRAITS_H
|
||||
#define NXTCPP_TRAITS_H
|
||||
#ifndef DAWNCPP_TRAITS_H
|
||||
#define DAWNCPP_TRAITS_H
|
||||
|
||||
#include "dawncpp.h"
|
||||
|
||||
|
@ -40,4 +40,4 @@ namespace dawn {
|
|||
|
||||
}
|
||||
|
||||
#endif // NXTCPP_TRAITS_H
|
||||
#endif // DAWNCPP_TRAITS_H
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
//* See the License for the specific language governing permissions and
|
||||
//* limitations under the License.
|
||||
|
||||
#ifndef MOCK_NXT_H
|
||||
#define MOCK_NXT_H
|
||||
#ifndef MOCK_DAWN_H
|
||||
#define MOCK_DAWN_H
|
||||
|
||||
#include <gmock/gmock.h>
|
||||
#include <dawn/dawn.h>
|
||||
|
@ -112,4 +112,4 @@ class MockProcTable : public ProcTableAsClass {
|
|||
MOCK_METHOD5(OnBufferMapWriteAsyncCallback, void(dawnBuffer buffer, uint32_t start, uint32_t size, dawnBufferMapWriteCallback callback, dawnCallbackUserdata userdata));
|
||||
};
|
||||
|
||||
#endif // MOCK_NXT_H
|
||||
#endif // MOCK_DAWN_H
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
#ifndef NXT_ENUM_CLASS_BITMASKS_H_
|
||||
#define NXT_ENUM_CLASS_BITMASKS_H_
|
||||
#ifndef DAWN_ENUM_CLASS_BITMASKS_H_
|
||||
#define DAWN_ENUM_CLASS_BITMASKS_H_
|
||||
|
||||
#include <type_traits>
|
||||
|
||||
|
@ -159,4 +159,4 @@ namespace dawn {
|
|||
}
|
||||
} // namespace dawn
|
||||
|
||||
#endif // NXT_ENUM_CLASS_BITMASKS_H_
|
||||
#endif // DAWN_ENUM_CLASS_BITMASKS_H_
|
||||
|
|
Loading…
Reference in New Issue