Bug 1728955: part 6) Log result of Windows' `OleSetClipboardResult`. r=masayuki
[gecko.git] / gfx / config / gfxFallback.h
blob687555885677c15602f6062ef9515b35ae492316
1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 #ifndef mozilla_gfx_config_gfxFallback_h
7 #define mozilla_gfx_config_gfxFallback_h
9 #include <stdint.h>
10 #include "gfxTelemetry.h"
12 namespace mozilla {
13 namespace gfx {
15 #define GFX_FALLBACK_MAP(_) \
16 /* Name */ \
17 _(NO_CONSTANT_BUFFER_OFFSETTING) \
18 /* Add new entries above this comment */
20 enum class Fallback : uint32_t {
21 #define MAKE_ENUM(name) name,
22 GFX_FALLBACK_MAP(MAKE_ENUM)
23 #undef MAKE_ENUM
24 NumValues
27 } // namespace gfx
28 } // namespace mozilla
30 #endif // mozilla_gfx_config_gfxFallback_h