summaryrefslogtreecommitdiffstats
path: root/dom/canvas/WebGLTypes.h
diff options
context:
space:
mode:
Diffstat (limited to 'dom/canvas/WebGLTypes.h')
-rw-r--r--dom/canvas/WebGLTypes.h53
1 files changed, 53 insertions, 0 deletions
diff --git a/dom/canvas/WebGLTypes.h b/dom/canvas/WebGLTypes.h
index c268047930..f5f78e98cb 100644
--- a/dom/canvas/WebGLTypes.h
+++ b/dom/canvas/WebGLTypes.h
@@ -1224,6 +1224,15 @@ inline bool StartsWith(const std::string_view str,
// -
+template <class T>
+Maybe<T> AsValidEnum(const std::underlying_type_t<T> raw_val) {
+ const auto raw_enum = T{raw_val}; // This is the risk we prevent!
+ if (!IsEnumCase(raw_enum)) return {};
+ return Some(raw_enum);
+}
+
+// -
+
namespace webgl {
// In theory, this number can be unbounded based on the driver. However, no
@@ -1302,6 +1311,50 @@ struct ReinterpretToSpan {
}
};
+// -
+
+inline std::string Join(Span<const std::string> ss,
+ const std::string_view& delim) {
+ if (!ss.size()) return "";
+ auto ret = std::string();
+ {
+ auto chars = delim.size() * (ss.size() - 1);
+ for (const auto& s : ss) {
+ chars += s.size();
+ }
+ ret.reserve(chars);
+ }
+
+ ret = ss[0];
+ ss = ss.subspan(1);
+ for (const auto& s : ss) {
+ ret += delim;
+ ret += s;
+ }
+ return ret;
+}
+
+inline std::string ToStringWithCommas(uint64_t v) {
+ if (!v) return "0";
+ std::vector<std::string> chunks;
+ while (v) {
+ const auto chunk = v % 1000;
+ v /= 1000;
+ chunks.insert(chunks.begin(), std::to_string(chunk));
+ }
+ return Join(chunks, ",");
+}
+
+// -
+
+namespace webgl {
+
+std::unordered_map<GLenum, bool> MakeIsEnabledMap(bool webgl2);
+
+static constexpr uint32_t kMaxClientWaitSyncTimeoutNS =
+ 1000 * 1000 * 1000; // 1000ms in ns.
+
+} // namespace webgl
} // namespace mozilla
#endif