Flutter Engine
The Flutter Engine
Loading...
Searching...
No Matches
Classes | Functions | Variables
fl_pixel_buffer_texture.cc File Reference
#include "flutter/shell/platform/linux/public/flutter_linux/fl_pixel_buffer_texture.h"
#include <epoxy/gl.h>
#include <gmodule.h>
#include "flutter/shell/platform/linux/fl_pixel_buffer_texture_private.h"

Go to the source code of this file.

Classes

struct  FlPixelBufferTexturePrivate
 

Functions

static void fl_pixel_buffer_texture_iface_init (FlTextureInterface *iface)
 
 G_DEFINE_TYPE_WITH_CODE (FlPixelBufferTexture, fl_pixel_buffer_texture, G_TYPE_OBJECT, G_IMPLEMENT_INTERFACE(fl_texture_get_type(), fl_pixel_buffer_texture_iface_init);G_ADD_PRIVATE(FlPixelBufferTexture)) static void fl_pixel_buffer_texture_set_id(FlTexture *texture
 
static int64_t fl_pixel_buffer_texture_get_id (FlTexture *texture)
 
static void fl_pixel_buffer_texture_dispose (GObject *object)
 
static void check_gl_error (int line)
 
gboolean fl_pixel_buffer_texture_populate (FlPixelBufferTexture *texture, uint32_t width, uint32_t height, FlutterOpenGLTexture *opengl_texture, GError **error)
 
static void fl_pixel_buffer_texture_class_init (FlPixelBufferTextureClass *klass)
 
static void fl_pixel_buffer_texture_init (FlPixelBufferTexture *self)
 

Variables

int64_t id
 
FlPixelBufferTexturePrivatepriv
 

Function Documentation

◆ check_gl_error()

static void check_gl_error ( int  line)
static

Definition at line 64 of file fl_pixel_buffer_texture.cc.

64 {
65 GLenum err = glGetError();
66 if (err) {
67 g_warning("glGetError %x (%s:%d)\n", err, __FILE__, line);
68 }
69}

◆ fl_pixel_buffer_texture_class_init()

static void fl_pixel_buffer_texture_class_init ( FlPixelBufferTextureClass *  klass)
static

Definition at line 119 of file fl_pixel_buffer_texture.cc.

120 {
121 G_OBJECT_CLASS(klass)->dispose = fl_pixel_buffer_texture_dispose;
122}
static void fl_pixel_buffer_texture_dispose(GObject *object)

◆ fl_pixel_buffer_texture_dispose()

static void fl_pixel_buffer_texture_dispose ( GObject *  object)
static

Definition at line 50 of file fl_pixel_buffer_texture.cc.

50 {
51 FlPixelBufferTexture* self = FL_PIXEL_BUFFER_TEXTURE(object);
53 reinterpret_cast<FlPixelBufferTexturePrivate*>(
54 fl_pixel_buffer_texture_get_instance_private(self));
55
56 if (priv->texture_id) {
57 glDeleteTextures(1, &priv->texture_id);
58 priv->texture_id = 0;
59 }
60
61 G_OBJECT_CLASS(fl_pixel_buffer_texture_parent_class)->dispose(object);
62}
FlPixelBufferTexturePrivate * priv

◆ fl_pixel_buffer_texture_get_id()

static int64_t fl_pixel_buffer_texture_get_id ( FlTexture *  texture)
static

Definition at line 37 of file fl_pixel_buffer_texture.cc.

37 {
38 FlPixelBufferTexture* self = FL_PIXEL_BUFFER_TEXTURE(texture);
40 reinterpret_cast<FlPixelBufferTexturePrivate*>(
41 fl_pixel_buffer_texture_get_instance_private(self));
42 return priv->id;
43}
FlTexture * texture

◆ fl_pixel_buffer_texture_iface_init()

static void fl_pixel_buffer_texture_iface_init ( FlTextureInterface *  iface)
static

Definition at line 45 of file fl_pixel_buffer_texture.cc.

45 {
46 iface->set_id = fl_pixel_buffer_texture_set_id;
47 iface->get_id = fl_pixel_buffer_texture_get_id;
48}
static int64_t fl_pixel_buffer_texture_get_id(FlTexture *texture)

◆ fl_pixel_buffer_texture_init()

static void fl_pixel_buffer_texture_init ( FlPixelBufferTexture *  self)
static

Definition at line 124 of file fl_pixel_buffer_texture.cc.

124{}

◆ fl_pixel_buffer_texture_populate()

gboolean fl_pixel_buffer_texture_populate ( FlPixelBufferTexture *  texture,
uint32_t  width,
uint32_t  height,
FlutterOpenGLTexture opengl_texture,
GError **  error 
)

fl_pixel_buffer_texture_populate: @texture: an #FlPixelBufferTexture. @width: width of the texture. @height: height of the texture. @opengl_texture: (out): return an FlutterOpenGLTexture. @error: (allow-none): #GError location to store the error occurring, or NULL to ignore.

Attempts to populate the specified @opengl_texture with texture details such as the name, width, height and the pixel format.

Returns: TRUE on success.

Definition at line 71 of file fl_pixel_buffer_texture.cc.

75 {
76 FlPixelBufferTexture* self = FL_PIXEL_BUFFER_TEXTURE(texture);
78 reinterpret_cast<FlPixelBufferTexturePrivate*>(
79 fl_pixel_buffer_texture_get_instance_private(self));
80
81 const uint8_t* buffer = nullptr;
82 if (!FL_PIXEL_BUFFER_TEXTURE_GET_CLASS(self)->copy_pixels(
83 self, &buffer, &width, &height, error)) {
84 return FALSE;
85 }
86
87 if (priv->texture_id == 0) {
88 glGenTextures(1, &priv->texture_id);
89 check_gl_error(__LINE__);
90 glBindTexture(GL_TEXTURE_2D, priv->texture_id);
91 check_gl_error(__LINE__);
92 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_BORDER);
93 check_gl_error(__LINE__);
94 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_BORDER);
95 check_gl_error(__LINE__);
96 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
97 check_gl_error(__LINE__);
98 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
99 check_gl_error(__LINE__);
100 } else {
101 glBindTexture(GL_TEXTURE_2D, priv->texture_id);
102 check_gl_error(__LINE__);
103 }
104 glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA8, width, height, 0, GL_RGBA,
105 GL_UNSIGNED_BYTE, buffer);
106 check_gl_error(__LINE__);
107
108 opengl_texture->target = GL_TEXTURE_2D;
109 opengl_texture->name = priv->texture_id;
110 opengl_texture->format = GL_RGBA8;
111 opengl_texture->destruction_callback = nullptr;
112 opengl_texture->user_data = nullptr;
113 opengl_texture->width = width;
114 opengl_texture->height = height;
115
116 return TRUE;
117}
static void check_gl_error(int line)
static const uint8_t buffer[]
const uint8_t uint32_t uint32_t GError ** error
return FALSE
int32_t height
int32_t width
uint32_t name
The name of the texture.
Definition embedder.h:369
VoidCallback destruction_callback
Definition embedder.h:376
void * user_data
User data to be returned on the invocation of the destruction callback.
Definition embedder.h:373
size_t height
Height of the texture.
Definition embedder.h:384
uint32_t format
The texture format (example GL_RGBA8).
Definition embedder.h:371

◆ G_DEFINE_TYPE_WITH_CODE()

G_DEFINE_TYPE_WITH_CODE ( FlPixelBufferTexture  ,
fl_pixel_buffer_texture  ,
G_TYPE_OBJECT  ,
G_IMPLEMENT_INTERFACE(fl_texture_get_type(), fl_pixel_buffer_texture_iface_init);G_ADD_PRIVATE(FlPixelBufferTexture)   
)

Variable Documentation

◆ id

priv id
Initial value:
{
FlPixelBufferTexture* self = FL_PIXEL_BUFFER_TEXTURE(texture)

Definition at line 28 of file fl_pixel_buffer_texture.cc.

◆ priv

Initial value:
=
reinterpret_cast<FlPixelBufferTexturePrivate*>(
fl_pixel_buffer_texture_get_instance_private(self))

Definition at line 30 of file fl_pixel_buffer_texture.cc.