blob: 336ad9837d4eb1d8412294e2dafcc27366d2b56b [file] [log] [blame]
// gpu/ipc/common/gpu_feature_info.mojom-blink.h is auto generated by mojom_bindings_generator.py, do not edit
// Copyright 2013 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GPU_IPC_COMMON_GPU_FEATURE_INFO_MOJOM_BLINK_H_
#define GPU_IPC_COMMON_GPU_FEATURE_INFO_MOJOM_BLINK_H_
#include <stdint.h>
#include <limits>
#include <optional>
#include <type_traits>
#include <utility>
#include "mojo/public/cpp/bindings/clone_traits.h"
#include "mojo/public/cpp/bindings/equals_traits.h"
#include "mojo/public/cpp/bindings/struct_ptr.h"
#include "mojo/public/cpp/bindings/struct_traits.h"
#include "mojo/public/cpp/bindings/union_traits.h"
#include "third_party/perfetto/include/perfetto/tracing/traced_value_forward.h"
#include "gpu/ipc/common/gpu_feature_info.mojom-features.h" // IWYU pragma: export
#include "gpu/ipc/common/gpu_feature_info.mojom-shared.h" // IWYU pragma: export
#include "gpu/ipc/common/gpu_feature_info.mojom-blink-forward.h" // IWYU pragma: export
#include "ui/gfx/mojom/buffer_types.mojom-blink.h"
#include "mojo/public/cpp/bindings/lib/wtf_clone_equals_util.h"
#include "mojo/public/cpp/bindings/lib/wtf_hash_util.h"
#include "third_party/blink/renderer/platform/wtf/hash_functions.h"
#include "third_party/blink/renderer/platform/wtf/text/wtf_string.h"
#include "third_party/blink/public/platform/web_common.h"
#if !BLINK_MOJO_IMPL && !INSIDE_BLINK
#error "File must only be imported inside blink"
#endif
#ifdef KYTHE_IS_RUNNING
#pragma kythe_inline_metadata "Metadata comment"
#endif
namespace gpu::mojom::blink {
// @generated_from: gpu.mojom.GpuFeatureInfo
class BLINK_PLATFORM_EXPORT GpuFeatureInfo {
public:
template <typename T>
using EnableIfSame = std::enable_if_t<std::is_same<GpuFeatureInfo, T>::value>;
using DataView = GpuFeatureInfoDataView;
using Data_ = internal::GpuFeatureInfo_Data;
template <typename... Args>
static GpuFeatureInfoPtr New(Args&&... args) {
return GpuFeatureInfoPtr(
std::in_place, std::forward<Args>(args)...);
}
template <typename U>
static GpuFeatureInfoPtr From(const U& u) {
return mojo::TypeConverter<GpuFeatureInfoPtr, U>::Convert(u);
}
template <typename U>
U To() const {
return mojo::TypeConverter<U, GpuFeatureInfo>::Convert(*this);
}
GpuFeatureInfo();
GpuFeatureInfo(
::blink::Vector<GpuFeatureStatus> status_values,
::blink::Vector<int32_t> enabled_gpu_driver_bug_workarounds,
const ::blink::String& disabled_extensions,
const ::blink::String& disabled_webgl_extensions,
::blink::Vector<uint32_t> applied_gpu_blocklist_entries,
::blink::Vector<uint32_t> applied_gpu_driver_bug_list_entries,
::blink::Vector<::gfx::BufferFormat> supported_buffer_formats_for_allocation_and_texturing);
~GpuFeatureInfo();
// Clone() is a template so it is only instantiated if it is used. Thus, the
// bindings generator does not need to know whether Clone() or copy
// constructor/assignment are available for members.
template <typename StructPtrType = GpuFeatureInfoPtr>
GpuFeatureInfoPtr Clone() const;
// Equals() is a template so it is only instantiated if it is used. Thus, the
// bindings generator does not need to know whether Equals() or == operator
// are available for members.
template <typename T, GpuFeatureInfo::EnableIfSame<T>* = nullptr>
bool Equals(const T& other) const;
template <typename T, GpuFeatureInfo::EnableIfSame<T>* = nullptr>
bool operator==(const T& rhs) const { return Equals(rhs); }
template <typename T, GpuFeatureInfo::EnableIfSame<T>* = nullptr>
bool operator!=(const T& rhs) const { return !operator==(rhs); }
template <mojo::internal::SendValidation send_validation, typename UserType>
static ::blink::Vector<uint8_t> Serialize(UserType* input) {
return mojo::internal::SerializeImpl<
GpuFeatureInfo::DataView, ::blink::Vector<uint8_t>, send_validation>(input);
}
template <typename UserType>
static ::blink::Vector<uint8_t> Serialize(UserType* input) {
return mojo::internal::SerializeImpl<
GpuFeatureInfo::DataView, ::blink::Vector<uint8_t>>(input);
}
template <typename UserType>
static mojo::Message SerializeAsMessage(UserType* input) {
return mojo::internal::SerializeAsMessageImpl<
GpuFeatureInfo::DataView>(input);
}
// The returned Message is serialized only if the message is moved
// cross-process or cross-language. Otherwise if the message is Deserialized
// as the same UserType |input| will just be moved to |output| in
// DeserializeFromMessage.
template <typename UserType>
static mojo::Message WrapAsMessage(UserType input) {
return mojo::Message(std::make_unique<
internal::GpuFeatureInfo_UnserializedMessageContext<
UserType, GpuFeatureInfo::DataView>>(0, 0, std::move(input)),
MOJO_CREATE_MESSAGE_FLAG_NONE);
}
template <typename UserType>
static bool Deserialize(const void* data,
size_t data_num_bytes,
UserType* output) {
mojo::Message message;
return mojo::internal::DeserializeImpl<GpuFeatureInfo::DataView>(
message, data, data_num_bytes, output, Validate);
}
template <typename UserType>
static bool Deserialize(base::span<const uint8_t> input,
UserType* output) {
return GpuFeatureInfo::Deserialize(
input.empty() ? nullptr : input.data(), input.size(), output);
}
template <typename UserType>
static bool DeserializeFromMessage(mojo::Message input,
UserType* output) {
auto context = input.TakeUnserializedContext<
internal::GpuFeatureInfo_UnserializedMessageContext<
UserType, GpuFeatureInfo::DataView>>();
if (context) {
*output = std::move(context->TakeData());
return true;
}
input.SerializeIfNecessary();
return mojo::internal::DeserializeImpl<GpuFeatureInfo::DataView>(
input, input.payload(), input.payload_num_bytes(), output, Validate);
}
// @generated_from: gpu.mojom.GpuFeatureInfo.status_values
::blink::Vector<GpuFeatureStatus> status_values;
// @generated_from: gpu.mojom.GpuFeatureInfo.enabled_gpu_driver_bug_workarounds
::blink::Vector<int32_t> enabled_gpu_driver_bug_workarounds;
// @generated_from: gpu.mojom.GpuFeatureInfo.disabled_extensions
::blink::String disabled_extensions;
// @generated_from: gpu.mojom.GpuFeatureInfo.disabled_webgl_extensions
::blink::String disabled_webgl_extensions;
// @generated_from: gpu.mojom.GpuFeatureInfo.applied_gpu_blocklist_entries
::blink::Vector<uint32_t> applied_gpu_blocklist_entries;
// @generated_from: gpu.mojom.GpuFeatureInfo.applied_gpu_driver_bug_list_entries
::blink::Vector<uint32_t> applied_gpu_driver_bug_list_entries;
// @generated_from: gpu.mojom.GpuFeatureInfo.supported_buffer_formats_for_allocation_and_texturing
::blink::Vector<::gfx::BufferFormat> supported_buffer_formats_for_allocation_and_texturing;
// Serialise this struct into a trace.
void WriteIntoTrace(perfetto::TracedValue traced_context) const;
private:
static bool Validate(const void* data,
mojo::internal::ValidationContext* validation_context);
};
// The comparison operators are templates, so they are only instantiated if they
// are used. Thus, the bindings generator does not need to know whether
// comparison operators are available for members.
template <typename T, GpuFeatureInfo::EnableIfSame<T>* = nullptr>
bool operator<(const T& lhs, const T& rhs);
template <typename T, GpuFeatureInfo::EnableIfSame<T>* = nullptr>
bool operator<=(const T& lhs, const T& rhs) {
return !(rhs < lhs);
}
template <typename T, GpuFeatureInfo::EnableIfSame<T>* = nullptr>
bool operator>(const T& lhs, const T& rhs) {
return rhs < lhs;
}
template <typename T, GpuFeatureInfo::EnableIfSame<T>* = nullptr>
bool operator>=(const T& lhs, const T& rhs) {
return !(lhs < rhs);
}
template <typename StructPtrType>
GpuFeatureInfoPtr GpuFeatureInfo::Clone() const {
return New(
mojo::Clone(status_values),
mojo::Clone(enabled_gpu_driver_bug_workarounds),
mojo::Clone(disabled_extensions),
mojo::Clone(disabled_webgl_extensions),
mojo::Clone(applied_gpu_blocklist_entries),
mojo::Clone(applied_gpu_driver_bug_list_entries),
mojo::Clone(supported_buffer_formats_for_allocation_and_texturing)
);
}
template <typename T, GpuFeatureInfo::EnableIfSame<T>*>
bool GpuFeatureInfo::Equals(const T& other_struct) const {
if (!mojo::Equals(this->status_values, other_struct.status_values))
return false;
if (!mojo::Equals(this->enabled_gpu_driver_bug_workarounds, other_struct.enabled_gpu_driver_bug_workarounds))
return false;
if (!mojo::Equals(this->disabled_extensions, other_struct.disabled_extensions))
return false;
if (!mojo::Equals(this->disabled_webgl_extensions, other_struct.disabled_webgl_extensions))
return false;
if (!mojo::Equals(this->applied_gpu_blocklist_entries, other_struct.applied_gpu_blocklist_entries))
return false;
if (!mojo::Equals(this->applied_gpu_driver_bug_list_entries, other_struct.applied_gpu_driver_bug_list_entries))
return false;
if (!mojo::Equals(this->supported_buffer_formats_for_allocation_and_texturing, other_struct.supported_buffer_formats_for_allocation_and_texturing))
return false;
return true;
}
template <typename T, GpuFeatureInfo::EnableIfSame<T>*>
bool operator<(const T& lhs, const T& rhs) {
if (lhs.status_values < rhs.status_values)
return true;
if (rhs.status_values < lhs.status_values)
return false;
if (lhs.enabled_gpu_driver_bug_workarounds < rhs.enabled_gpu_driver_bug_workarounds)
return true;
if (rhs.enabled_gpu_driver_bug_workarounds < lhs.enabled_gpu_driver_bug_workarounds)
return false;
if (lhs.disabled_extensions < rhs.disabled_extensions)
return true;
if (rhs.disabled_extensions < lhs.disabled_extensions)
return false;
if (lhs.disabled_webgl_extensions < rhs.disabled_webgl_extensions)
return true;
if (rhs.disabled_webgl_extensions < lhs.disabled_webgl_extensions)
return false;
if (lhs.applied_gpu_blocklist_entries < rhs.applied_gpu_blocklist_entries)
return true;
if (rhs.applied_gpu_blocklist_entries < lhs.applied_gpu_blocklist_entries)
return false;
if (lhs.applied_gpu_driver_bug_list_entries < rhs.applied_gpu_driver_bug_list_entries)
return true;
if (rhs.applied_gpu_driver_bug_list_entries < lhs.applied_gpu_driver_bug_list_entries)
return false;
if (lhs.supported_buffer_formats_for_allocation_and_texturing < rhs.supported_buffer_formats_for_allocation_and_texturing)
return true;
if (rhs.supported_buffer_formats_for_allocation_and_texturing < lhs.supported_buffer_formats_for_allocation_and_texturing)
return false;
return false;
}
} // gpu::mojom::blink
namespace mojo {
template <>
struct BLINK_PLATFORM_EXPORT StructTraits<::gpu::mojom::blink::GpuFeatureInfo::DataView,
::gpu::mojom::blink::GpuFeatureInfoPtr> {
static bool IsNull(const ::gpu::mojom::blink::GpuFeatureInfoPtr& input) { return !input; }
static void SetToNull(::gpu::mojom::blink::GpuFeatureInfoPtr* output) { output->reset(); }
static const decltype(::gpu::mojom::blink::GpuFeatureInfo::status_values)& status_values(
const ::gpu::mojom::blink::GpuFeatureInfoPtr& input) {
return input->status_values;
}
static const decltype(::gpu::mojom::blink::GpuFeatureInfo::enabled_gpu_driver_bug_workarounds)& enabled_gpu_driver_bug_workarounds(
const ::gpu::mojom::blink::GpuFeatureInfoPtr& input) {
return input->enabled_gpu_driver_bug_workarounds;
}
static const decltype(::gpu::mojom::blink::GpuFeatureInfo::disabled_extensions)& disabled_extensions(
const ::gpu::mojom::blink::GpuFeatureInfoPtr& input) {
return input->disabled_extensions;
}
static const decltype(::gpu::mojom::blink::GpuFeatureInfo::disabled_webgl_extensions)& disabled_webgl_extensions(
const ::gpu::mojom::blink::GpuFeatureInfoPtr& input) {
return input->disabled_webgl_extensions;
}
static const decltype(::gpu::mojom::blink::GpuFeatureInfo::applied_gpu_blocklist_entries)& applied_gpu_blocklist_entries(
const ::gpu::mojom::blink::GpuFeatureInfoPtr& input) {
return input->applied_gpu_blocklist_entries;
}
static const decltype(::gpu::mojom::blink::GpuFeatureInfo::applied_gpu_driver_bug_list_entries)& applied_gpu_driver_bug_list_entries(
const ::gpu::mojom::blink::GpuFeatureInfoPtr& input) {
return input->applied_gpu_driver_bug_list_entries;
}
static const decltype(::gpu::mojom::blink::GpuFeatureInfo::supported_buffer_formats_for_allocation_and_texturing)& supported_buffer_formats_for_allocation_and_texturing(
const ::gpu::mojom::blink::GpuFeatureInfoPtr& input) {
return input->supported_buffer_formats_for_allocation_and_texturing;
}
static bool Read(::gpu::mojom::blink::GpuFeatureInfo::DataView input, ::gpu::mojom::blink::GpuFeatureInfoPtr* output);
};
} // namespace mojo
#endif // GPU_IPC_COMMON_GPU_FEATURE_INFO_MOJOM_BLINK_H_
/* Metadata comment
eyJ0eXBlIjogImt5dGhlMCIsICJtZXRhIjogW3sidHlwZSI6ICJhbmNob3JfZGVmaW5lcyIsICJi
ZWdpbiI6IDE3MTksICJlbmQiOiAxNzMzLCAidm5hbWUiOiB7Imxhbmd1YWdlIjogIm1vam9tIiwg
ImNvcnB1cyI6ICJjaHJvbWl1bS5nb29nbGVzb3VyY2UuY29tL2NvZGVzZWFyY2gvY2hyb21pdW0v
c3JjLy9tYWluIiwgInNpZ25hdHVyZSI6ICJncHUubW9qb20uR3B1RmVhdHVyZUluZm8ifSwgImVk
Z2UiOiAiJS9reXRoZS9lZGdlL2dlbmVyYXRlcyJ9LCB7InR5cGUiOiAiYW5jaG9yX2RlZmluZXMi
LCAiYmVnaW4iOiA2MjM5LCAiZW5kIjogNjI1MiwgInZuYW1lIjogeyJsYW5ndWFnZSI6ICJtb2pv
bSIsICJjb3JwdXMiOiAiY2hyb21pdW0uZ29vZ2xlc291cmNlLmNvbS9jb2Rlc2VhcmNoL2Nocm9t
aXVtL3NyYy8vbWFpbiIsICJzaWduYXR1cmUiOiAiZ3B1Lm1vam9tLkdwdUZlYXR1cmVJbmZvLnN0
YXR1c192YWx1ZXMifSwgImVkZ2UiOiAiJS9reXRoZS9lZGdlL2dlbmVyYXRlcyJ9LCB7InR5cGUi
OiAiYW5jaG9yX2RlZmluZXMiLCAiYmVnaW4iOiA2MzY0LCAiZW5kIjogNjM5OCwgInZuYW1lIjog
eyJsYW5ndWFnZSI6ICJtb2pvbSIsICJjb3JwdXMiOiAiY2hyb21pdW0uZ29vZ2xlc291cmNlLmNv
bS9jb2Rlc2VhcmNoL2Nocm9taXVtL3NyYy8vbWFpbiIsICJzaWduYXR1cmUiOiAiZ3B1Lm1vam9t
LkdwdUZlYXR1cmVJbmZvLmVuYWJsZWRfZ3B1X2RyaXZlcl9idWdfd29ya2Fyb3VuZHMifSwgImVk
Z2UiOiAiJS9reXRoZS9lZGdlL2dlbmVyYXRlcyJ9LCB7InR5cGUiOiAiYW5jaG9yX2RlZmluZXMi
LCAiYmVnaW4iOiA2NDg2LCAiZW5kIjogNjUwNSwgInZuYW1lIjogeyJsYW5ndWFnZSI6ICJtb2pv
bSIsICJjb3JwdXMiOiAiY2hyb21pdW0uZ29vZ2xlc291cmNlLmNvbS9jb2Rlc2VhcmNoL2Nocm9t
aXVtL3NyYy8vbWFpbiIsICJzaWduYXR1cmUiOiAiZ3B1Lm1vam9tLkdwdUZlYXR1cmVJbmZvLmRp
c2FibGVkX2V4dGVuc2lvbnMifSwgImVkZ2UiOiAiJS9reXRoZS9lZGdlL2dlbmVyYXRlcyJ9LCB7
InR5cGUiOiAiYW5jaG9yX2RlZmluZXMiLCAiYmVnaW4iOiA2NTk5LCAiZW5kIjogNjYyNCwgInZu
YW1lIjogeyJsYW5ndWFnZSI6ICJtb2pvbSIsICJjb3JwdXMiOiAiY2hyb21pdW0uZ29vZ2xlc291
cmNlLmNvbS9jb2Rlc2VhcmNoL2Nocm9taXVtL3NyYy8vbWFpbiIsICJzaWduYXR1cmUiOiAiZ3B1
Lm1vam9tLkdwdUZlYXR1cmVJbmZvLmRpc2FibGVkX3dlYmdsX2V4dGVuc2lvbnMifSwgImVkZ2Ui
OiAiJS9reXRoZS9lZGdlL2dlbmVyYXRlcyJ9LCB7InR5cGUiOiAiYW5jaG9yX2RlZmluZXMiLCAi
YmVnaW4iOiA2NzMyLCAiZW5kIjogNjc2MSwgInZuYW1lIjogeyJsYW5ndWFnZSI6ICJtb2pvbSIs
ICJjb3JwdXMiOiAiY2hyb21pdW0uZ29vZ2xlc291cmNlLmNvbS9jb2Rlc2VhcmNoL2Nocm9taXVt
L3NyYy8vbWFpbiIsICJzaWduYXR1cmUiOiAiZ3B1Lm1vam9tLkdwdUZlYXR1cmVJbmZvLmFwcGxp
ZWRfZ3B1X2Jsb2NrbGlzdF9lbnRyaWVzIn0sICJlZGdlIjogIiUva3l0aGUvZWRnZS9nZW5lcmF0
ZXMifSwgeyJ0eXBlIjogImFuY2hvcl9kZWZpbmVzIiwgImJlZ2luIjogNjg3NSwgImVuZCI6IDY5
MTAsICJ2bmFtZSI6IHsibGFuZ3VhZ2UiOiAibW9qb20iLCAiY29ycHVzIjogImNocm9taXVtLmdv
b2dsZXNvdXJjZS5jb20vY29kZXNlYXJjaC9jaHJvbWl1bS9zcmMvL21haW4iLCAic2lnbmF0dXJl
IjogImdwdS5tb2pvbS5HcHVGZWF0dXJlSW5mby5hcHBsaWVkX2dwdV9kcml2ZXJfYnVnX2xpc3Rf
ZW50cmllcyJ9LCAiZWRnZSI6ICIlL2t5dGhlL2VkZ2UvZ2VuZXJhdGVzIn0sIHsidHlwZSI6ICJh
bmNob3JfZGVmaW5lcyIsICJiZWdpbiI6IDcwNTMsICJlbmQiOiA3MTA2LCAidm5hbWUiOiB7Imxh
bmd1YWdlIjogIm1vam9tIiwgImNvcnB1cyI6ICJjaHJvbWl1bS5nb29nbGVzb3VyY2UuY29tL2Nv
ZGVzZWFyY2gvY2hyb21pdW0vc3JjLy9tYWluIiwgInNpZ25hdHVyZSI6ICJncHUubW9qb20uR3B1
RmVhdHVyZUluZm8uc3VwcG9ydGVkX2J1ZmZlcl9mb3JtYXRzX2Zvcl9hbGxvY2F0aW9uX2FuZF90
ZXh0dXJpbmcifSwgImVkZ2UiOiAiJS9reXRoZS9lZGdlL2dlbmVyYXRlcyJ9XX0=
*/