2018-11-30 22:52:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2018-06-13 20:43:48 +03:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
|
2019-10-02 19:46:03 +03:00
|
|
|
#ifndef GPU_ValidationError_H_
|
|
|
|
#define GPU_ValidationError_H_
|
2018-06-13 20:43:48 +03:00
|
|
|
|
|
|
|
#include "nsWrapperCache.h"
|
|
|
|
#include "ObjectModel.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace webgpu {
|
|
|
|
class Device;
|
|
|
|
|
2019-10-02 19:46:03 +03:00
|
|
|
class ValidationError final : public nsWrapperCache, public ChildOf<Device> {
|
2018-06-13 20:43:48 +03:00
|
|
|
public:
|
2019-10-02 19:46:03 +03:00
|
|
|
GPU_DECL_CYCLE_COLLECTION(ValidationError)
|
|
|
|
GPU_DECL_JS_WRAP(ValidationError)
|
|
|
|
ValidationError() = delete;
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2018-06-13 20:43:48 +03:00
|
|
|
private:
|
2019-10-02 19:46:03 +03:00
|
|
|
virtual ~ValidationError();
|
2020-01-22 10:31:51 +03:00
|
|
|
void Cleanup() {}
|
2018-06-13 20:43:48 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace webgpu
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2019-10-02 19:46:03 +03:00
|
|
|
#endif // GPU_ValidationError_H_
|