Flutter Engine
 
Loading...
Searching...
No Matches
fl_compositor.cc
Go to the documentation of this file.
1// Copyright 2013 The Flutter Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "fl_compositor.h"
6
7G_DEFINE_QUARK(fl_compositor_error_quark, fl_compositor_error)
8
9G_DEFINE_TYPE(FlCompositor, fl_compositor, G_TYPE_OBJECT)
10
11static void fl_compositor_class_init(FlCompositorClass* klass) {}
12
13static void fl_compositor_init(FlCompositor* self) {}
14
15gboolean fl_compositor_present_layers(FlCompositor* self,
16 const FlutterLayer** layers,
17 size_t layers_count) {
18 g_return_val_if_fail(FL_IS_COMPOSITOR(self), FALSE);
19 return FL_COMPOSITOR_GET_CLASS(self)->present_layers(self, layers,
21}
22
23gboolean fl_compositor_render(FlCompositor* self,
24 cairo_t* cr,
25 GdkWindow* window) {
26 g_return_val_if_fail(FL_IS_COMPOSITOR(self), FALSE);
27 return FL_COMPOSITOR_GET_CLASS(self)->render(self, cr, window);
28}
GLFWwindow * window
Definition main.cc:60
G_DEFINE_TYPE(FlBasicMessageChannelResponseHandle, fl_basic_message_channel_response_handle, G_TYPE_OBJECT) static void fl_basic_message_channel_response_handle_dispose(GObject *object)
G_DEFINE_QUARK(fl_binary_messenger_codec_error_quark, fl_binary_messenger_codec_error) G_DECLARE_FINAL_TYPE(FlBinaryMessengerImpl
gboolean fl_compositor_render(FlCompositor *self, cairo_t *cr, GdkWindow *window)
static void fl_compositor_class_init(FlCompositorClass *klass)
gboolean fl_compositor_present_layers(FlCompositor *self, const FlutterLayer **layers, size_t layers_count)
static void fl_compositor_init(FlCompositor *self)
const FlutterLayer size_t layers_count
const FlutterLayer ** layers