File tree Expand file tree Collapse file tree 1 file changed +1
-8
lines changed
flutter/shell/platform/embedder Expand file tree Collapse file tree 1 file changed +1
-8
lines changed Original file line number Diff line number Diff line change @@ -407,7 +407,6 @@ typedef struct {
407407} FlutterTransformation ;
408408
409409typedef void (* VoidCallback )(void * /* user data */ );
410- typedef bool (* BoolCallback )(void * /* user data */ );
411410
412411typedef enum {
413412 /// Specifies an OpenGL texture target type. Textures are specified using
@@ -515,13 +514,6 @@ typedef struct {
515514 uint32_t name ;
516515 /// The texture format (example GL_RGBA8).
517516 uint32_t format ;
518- /// The pixel data buffer.
519- const uint8_t * buffer ;
520- /// The size of pixel buffer.
521- size_t buffer_size ;
522- /// Callback invoked that the gpu surface texture start binding.
523- BoolCallback bind_callback ;
524-
525517 /// User data to be returned on the invocation of the destruction callback.
526518 void * user_data ;
527519 /// Callback invoked (on an engine managed thread) that asks the embedder to
@@ -615,6 +607,7 @@ typedef struct {
615607 uint32_t format ;
616608} FlutterOpenGLSurface ;
617609
610+ typedef bool (* BoolCallback )(void * /* user data */ );
618611typedef FlutterTransformation (* TransformationCallback )(void * /* user data */ );
619612typedef uint32_t (* UIntCallback )(void * /* user data */ );
620613typedef bool (* SoftwareSurfacePresentCallback )(void * /* user data */ ,
You can’t perform that action at this time.
0 commit comments