1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */
#ifndef WEBGLQUEUEPARAMTRAITS_H_
#define WEBGLQUEUEPARAMTRAITS_H_
#include <type_traits>
#include "TexUnpackBlob.h"
#include "WebGLTypes.h"
#include "ipc/EnumSerializer.h"
namespace mozilla {
namespace webgl {
template <typename T>
struct QueueParamTraits;
// -
#define USE_TIED_FIELDS(T) \
template <> \
struct QueueParamTraits<T> : QueueParamTraits_TiedFields<T> {};
// -
USE_TIED_FIELDS(layers::RemoteTextureId)
USE_TIED_FIELDS(layers::RemoteTextureOwnerId)
USE_TIED_FIELDS(WebGLContextOptions)
USE_TIED_FIELDS(webgl::PixelUnpackStateWebgl)
USE_TIED_FIELDS(webgl::SwapChainOptions)
USE_TIED_FIELDS(webgl::ReadPixelsDesc)
USE_TIED_FIELDS(webgl::VertAttribPointerDesc)
USE_TIED_FIELDS(webgl::PackingInfo)
USE_TIED_FIELDS(webgl::TypedQuad)
USE_TIED_FIELDS(webgl::PixelPackingState)
USE_TIED_FIELDS(FloatOrInt)
} // namespace webgl
template <>
inline auto TiedFields<gfx::IntSize>(gfx::IntSize& a) {
return std::tie(a.width, a.height);
}
namespace webgl {
USE_TIED_FIELDS(gfx::IntSize)
// -
#undef USE_TIED_FIELDS
// -
template <class T>
struct QueueParamTraits<avec2<T>> : QueueParamTraits_TiedFields<avec2<T>> {};
template <class T>
struct QueueParamTraits<avec3<T>> : QueueParamTraits_TiedFields<avec3<T>> {};
// ---------------------------------------------------------------------
// Enums!
} // namespace webgl
inline constexpr bool IsEnumCase(const webgl::AttribBaseType raw) {
switch (raw) {
case webgl::AttribBaseType::Boolean:
case webgl::AttribBaseType::Float:
case webgl::AttribBaseType::Int:
case webgl::AttribBaseType::Uint:
return true;
}
return false;
}
static_assert(IsEnumCase(webgl::AttribBaseType(3)));
static_assert(!IsEnumCase(webgl::AttribBaseType(4)));
static_assert(!IsEnumCase(webgl::AttribBaseType(5)));
namespace webgl {
#define USE_IS_ENUM_CASE(T) \
template <> \
struct QueueParamTraits<T> : QueueParamTraits_IsEnumCase<T> {};
USE_IS_ENUM_CASE(webgl::AttribBaseType)
USE_IS_ENUM_CASE(webgl::ProvokingVertex)
#undef USE_IS_ENUM_CASE
// ---------------------------------------------------------------------
// Custom QueueParamTraits
template <typename T>
struct QueueParamTraits<Span<T>> {
template <typename U>
static bool Write(ProducerView<U>& view, const Span<T>& in) {
const auto& elemCount = in.size();
auto status = view.WriteParam(elemCount);
if (!status) return status;
if (!elemCount) return status;
status = view.WriteFromRange(Range<const T>{in});
return status;
}
template <typename U>
static bool Read(ConsumerView<U>& view, Span<const T>* const out) {
size_t elemCount = 0;
auto status = view.ReadParam(&elemCount);
if (!status) return status;
if (!elemCount) {
*out = {};
return true;
}
auto data = view.template ReadRange<const T>(elemCount);
if (!data) return false;
*out = Span{*data};
return true;
}
};
template <>
struct QueueParamTraits<webgl::ContextLossReason>
: public ContiguousEnumSerializerInclusive<
webgl::ContextLossReason, webgl::ContextLossReason::None,
webgl::ContextLossReason::Guilty> {};
template <typename V, typename E>
struct QueueParamTraits<Result<V, E>> {
using T = Result<V, E>;
template <typename U>
static bool Write(ProducerView<U>& aProducerView, const T& aArg) {
const auto ok = aArg.isOk();
auto status = aProducerView.WriteParam(ok);
if (!status) return status;
if (ok) {
status = aProducerView.WriteParam(aArg.unwrap());
} else {
status = aProducerView.WriteParam(aArg.unwrapErr());
}
return status;
}
template <typename U>
static bool Read(ConsumerView<U>& aConsumerView, T* aArg) {
bool ok;
auto status = aConsumerView.ReadParam(&ok);
if (!status) return status;
if (ok) {
V val;
status = aConsumerView.ReadParam(&val);
*aArg = val;
} else {
E val;
status = aConsumerView.ReadParam(&val);
*aArg = Err(val);
}
return status;
}
};
template <>
struct QueueParamTraits<std::string> {
using T = std::string;
template <typename U>
static bool Write(ProducerView<U>& aProducerView, const T& aArg) {
const auto size = aArg.size();
auto status = aProducerView.WriteParam(size);
if (!status) return status;
status = aProducerView.WriteFromRange(Range<const char>{aArg.data(), size});
return status;
}
template <typename U>
static bool Read(ConsumerView<U>& aConsumerView, T* aArg) {
size_t size;
auto status = aConsumerView.ReadParam(&size);
if (!status) return status;
const auto view = aConsumerView.template ReadRange<char>(size);
if (!view) return false;
aArg->assign(view->begin().get(), size);
return status;
}
};
template <typename U>
struct QueueParamTraits<std::vector<U>> {
using T = std::vector<U>;
template <typename V>
static bool Write(ProducerView<V>& aProducerView, const T& aArg) {
auto status = aProducerView.WriteParam(aArg.size());
if (!status) return status;
for (const auto& cur : aArg) {
status = aProducerView.WriteParam(cur);
if (!status) return status;
}
return status;
}
template <typename V>
static bool Read(ConsumerView<V>& aConsumerView, T* aArg) {
size_t size;
auto status = aConsumerView.ReadParam(&size);
if (!status) return status;
aArg->resize(size);
for (auto& cur : *aArg) {
status = aConsumerView.ReadParam(&cur);
if (!status) return status;
}
return status;
}
};
template <>
struct QueueParamTraits<WebGLExtensionID>
: public ContiguousEnumSerializer<WebGLExtensionID,
WebGLExtensionID::ANGLE_instanced_arrays,
WebGLExtensionID::Max> {};
template <>
struct QueueParamTraits<CompileResult> {
using T = CompileResult;
template <typename U>
static bool Write(ProducerView<U>& aProducerView, const T& aArg) {
aProducerView.WriteParam(aArg.pending);
aProducerView.WriteParam(aArg.log);
aProducerView.WriteParam(aArg.translatedSource);
return aProducerView.WriteParam(aArg.success);
}
template <typename U>
static bool Read(ConsumerView<U>& aConsumerView, T* aArg) {
aConsumerView.ReadParam(&aArg->pending);
aConsumerView.ReadParam(&aArg->log);
aConsumerView.ReadParam(&aArg->translatedSource);
return aConsumerView.ReadParam(&aArg->success);
}
};
template <>
struct QueueParamTraits<mozilla::layers::TextureType>
: public ContiguousEnumSerializer<mozilla::layers::TextureType,
mozilla::layers::TextureType::Unknown,
mozilla::layers::TextureType::Last> {};
template <>
struct QueueParamTraits<mozilla::gfx::SurfaceFormat>
: public ContiguousEnumSerializerInclusive<
mozilla::gfx::SurfaceFormat, mozilla::gfx::SurfaceFormat::B8G8R8A8,
mozilla::gfx::SurfaceFormat::UNKNOWN> {};
template <>
struct QueueParamTraits<gfxAlphaType>
: public ContiguousEnumSerializerInclusive<
gfxAlphaType, gfxAlphaType::Opaque, gfxAlphaType::NonPremult> {};
// -
template <class Enum>
using WebIDLEnumQueueSerializer =
ContiguousEnumSerializerInclusive<Enum, ContiguousEnumValues<Enum>::min,
ContiguousEnumValues<Enum>::max>;
template <>
struct QueueParamTraits<dom::WebGLPowerPreference>
: public WebIDLEnumQueueSerializer<dom::WebGLPowerPreference> {};
template <>
struct QueueParamTraits<dom::PredefinedColorSpace>
: public WebIDLEnumQueueSerializer<dom::PredefinedColorSpace> {};
} // namespace webgl
} // namespace mozilla
#endif // WEBGLQUEUEPARAMTRAITS_H_
|