// gpu/ipc/common/shared_image_metadata.mojom.cc 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.

#if defined(__clang__)
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wunused-private-field"
#endif

#include "gpu/ipc/common/shared_image_metadata.mojom.h"
#include <stdint.h>
#include <utility>
#include "mojo/public/cpp/bindings/lib/default_construct_tag_internal.h"
#include "mojo/public/cpp/bindings/lib/serialization.h"
#include "mojo/public/cpp/bindings/lib/validate_params.h"
#include "mojo/public/cpp/bindings/lib/validation_errors.h"
#include "mojo/public/cpp/bindings/mojo_buildflags.h"
#include "third_party/perfetto/include/perfetto/tracing/traced_value.h"

#include "gpu/ipc/common/shared_image_metadata.mojom-params-data.h"
#include "gpu/ipc/common/shared_image_metadata.mojom-shared-message-ids.h"

#include "gpu/ipc/common/shared_image_metadata.mojom-import-headers.h"
#include "gpu/ipc/common/shared_image_metadata.mojom-test-utils.h"


namespace gpu::mojom {
SharedImageMetadata::SharedImageMetadata()
    : format(),
      size(),
      color_space(),
      surface_origin(),
      alpha_type(),
      usage() {}

SharedImageMetadata::SharedImageMetadata(
    const ::viz::SharedImageFormat& format_in,
    const ::gfx::Size& size_in,
    const ::gfx::ColorSpace& color_space_in,
    ::GrSurfaceOrigin surface_origin_in,
    ::SkAlphaType alpha_type_in,
    uint32_t usage_in)
    : format(std::move(format_in)),
      size(std::move(size_in)),
      color_space(std::move(color_space_in)),
      surface_origin(std::move(surface_origin_in)),
      alpha_type(std::move(alpha_type_in)),
      usage(std::move(usage_in)) {}

SharedImageMetadata::~SharedImageMetadata() = default;

void SharedImageMetadata::WriteIntoTrace(
    perfetto::TracedValue traced_context) const {
  [[maybe_unused]] auto dict = std::move(traced_context).WriteDictionary();
  perfetto::WriteIntoTracedValueWithFallback(
    dict.AddItem(
      "format"), this->format,
#if BUILDFLAG(MOJO_TRACE_ENABLED)
      "<value of type const ::viz::SharedImageFormat&>"
#else
      "<value>"
#endif  // BUILDFLAG(MOJO_TRACE_ENABLED)
    );
  perfetto::WriteIntoTracedValueWithFallback(
    dict.AddItem(
      "size"), this->size,
#if BUILDFLAG(MOJO_TRACE_ENABLED)
      "<value of type const ::gfx::Size&>"
#else
      "<value>"
#endif  // BUILDFLAG(MOJO_TRACE_ENABLED)
    );
  perfetto::WriteIntoTracedValueWithFallback(
    dict.AddItem(
      "color_space"), this->color_space,
#if BUILDFLAG(MOJO_TRACE_ENABLED)
      "<value of type const ::gfx::ColorSpace&>"
#else
      "<value>"
#endif  // BUILDFLAG(MOJO_TRACE_ENABLED)
    );
  perfetto::WriteIntoTracedValueWithFallback(
    dict.AddItem(
      "surface_origin"), this->surface_origin,
#if BUILDFLAG(MOJO_TRACE_ENABLED)
      "<value of type ::GrSurfaceOrigin>"
#else
      "<value>"
#endif  // BUILDFLAG(MOJO_TRACE_ENABLED)
    );
  perfetto::WriteIntoTracedValueWithFallback(
    dict.AddItem(
      "alpha_type"), this->alpha_type,
#if BUILDFLAG(MOJO_TRACE_ENABLED)
      "<value of type ::SkAlphaType>"
#else
      "<value>"
#endif  // BUILDFLAG(MOJO_TRACE_ENABLED)
    );
  perfetto::WriteIntoTracedValueWithFallback(
    dict.AddItem(
      "usage"), this->usage,
#if BUILDFLAG(MOJO_TRACE_ENABLED)
      "<value of type uint32_t>"
#else
      "<value>"
#endif  // BUILDFLAG(MOJO_TRACE_ENABLED)
    );
}

bool SharedImageMetadata::Validate(
    const void* data,
    mojo::internal::ValidationContext* validation_context) {
  return Data_::Validate(data, validation_context);
}


}  // gpu::mojom


namespace mojo {


// static
bool StructTraits<::gpu::mojom::SharedImageMetadata::DataView, ::gpu::mojom::SharedImageMetadataPtr>::Read(
    ::gpu::mojom::SharedImageMetadata::DataView input,
    ::gpu::mojom::SharedImageMetadataPtr* output) {
  bool success = true;
  ::gpu::mojom::SharedImageMetadataPtr result(::gpu::mojom::SharedImageMetadata::New());
  
      if (success && !input.ReadFormat(&result->format))
        success = false;
      if (success && !input.ReadSize(&result->size))
        success = false;
      if (success && !input.ReadColorSpace(&result->color_space))
        success = false;
      if (success && !input.ReadSurfaceOrigin(&result->surface_origin))
        success = false;
      if (success && !input.ReadAlphaType(&result->alpha_type))
        success = false;
      if (success)
        result->usage = input.usage();
  *output = std::move(result);
  return success;
}

}  // namespace mojo


// Symbols declared in the -test-utils.h header are defined here instead of a
// separate .cc file to save compile time.


namespace gpu::mojom {




}  // gpu::mojom


#if defined(__clang__)
#pragma clang diagnostic pop
#endif