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/. */
10 #include "mozilla/gfx/Types.h"
16 // Functions invoked from Rust code
19 bool is_in_compositor_thread();
20 bool is_in_main_thread();
21 bool is_in_render_thread();
22 bool is_glcontext_gles(void* glcontext_ptr
);
23 bool is_glcontext_angle(void* glcontext_ptr
);
24 bool gfx_use_wrench();
25 const char* gfx_wr_resource_path_override();
26 bool gfx_wr_use_optimized_shaders();
27 void gfx_critical_note(const char* msg
);
28 void gfx_critical_error(const char* msg
);
29 void gecko_printf_stderr_output(const char* msg
);
30 void* get_proc_address_from_glcontext(void* glcontext_ptr
,
31 const char* procname
);
33 bool gecko_profiler_thread_is_being_profiled();
35 // IMPORTANT: Keep this synchronized with enumerate_interners in
36 // gfx/wr/webrender_api
37 #define WEBRENDER_FOR_EACH_INTERNER(macro) \
40 macro(normal_border); \
41 macro(image_border); \
44 macro(line_decoration); \
51 macro(backdrop_capture); \
52 macro(backdrop_render); \
55 // Prelude of types necessary before including webrender_ffi_generated.h
59 // Because this struct is macro-generated on the Rust side, cbindgen can't see
60 // it. Work around that by re-declaring it here.
61 #define DECLARE_MEMBER(id) uintptr_t id;
62 struct InternerSubReport
{
63 WEBRENDER_FOR_EACH_INTERNER(DECLARE_MEMBER
)
71 struct WrPipelineInfo
;
73 struct WrPipelineIdAndEpoch
;
74 using WrPipelineIdEpochs
= nsTArray
<WrPipelineIdAndEpoch
>;
77 } // namespace mozilla
79 void apz_register_updater(mozilla::wr::WrWindowId aWindowId
);
80 void apz_pre_scene_swap(mozilla::wr::WrWindowId aWindowId
);
81 void apz_post_scene_swap(mozilla::wr::WrWindowId aWindowId
,
82 const mozilla::wr::WrPipelineInfo
* aInfo
);
83 void apz_run_updater(mozilla::wr::WrWindowId aWindowId
);
84 void apz_deregister_updater(mozilla::wr::WrWindowId aWindowId
);
86 void apz_register_sampler(mozilla::wr::WrWindowId aWindowId
);
87 void apz_sample_transforms(mozilla::wr::WrWindowId aWindowId
,
88 const uint64_t* aGeneratedFrameId
,
89 mozilla::wr::Transaction
* aTransaction
);
90 void apz_deregister_sampler(mozilla::wr::WrWindowId aWindowId
);
92 void omta_register_sampler(mozilla::wr::WrWindowId aWindowId
);
93 void omta_sample(mozilla::wr::WrWindowId aWindowId
,
94 mozilla::wr::Transaction
* aTransaction
);
95 void omta_deregister_sampler(mozilla::wr::WrWindowId aWindowId
);
98 // Work-around Solaris define which conflcits with WR color constant, see
100 #pragma push_macro("TRANSPARENT")
103 #include "webrender_ffi_generated.h"
105 #pragma pop_macro("TRANSPARENT")
107 template struct mozilla::wr::Point2D
<int32_t, mozilla::wr::DevicePixel
>;
108 template struct mozilla::wr::Point2D
<int, mozilla::wr::WorldPixel
>;
109 template struct mozilla::wr::Point2D
<float, mozilla::wr::WorldPixel
>;
110 template struct mozilla::wr::Box2D
<int32_t, mozilla::wr::DevicePixel
>;
111 template struct mozilla::wr::Box2D
<int, mozilla::wr::LayoutPixel
>;
116 // Cast a blob image key into a regular image for use in
118 inline ImageKey
AsImageKey(BlobImageKey aKey
) { return aKey
._0
; }
121 } // namespace mozilla