Files
cup_edit/linux/include/flutter_filament/flutter_filament_plugin.h
Nick Fisher 8b9e6a2b3a rename plugin from PolyvoxFilament to FlutterFilament
rename plugin from PolyvoxFilament to FlutterFilament
2023-10-26 14:08:20 +11:00

28 lines
701 B
C

#ifndef FLUTTER_PLUGIN_FLUTTER_FILAMENT_PLUGIN_H_
#define FLUTTER_PLUGIN_FLUTTER_FILAMENT_PLUGIN_H_
#include <flutter_linux/flutter_linux.h>
#include <epoxy/gl.h>
G_BEGIN_DECLS
#ifdef FLUTTER_PLUGIN_IMPL
#define FLUTTER_PLUGIN_EXPORT __attribute__((visibility("default")))
#else
#define FLUTTER_PLUGIN_EXPORT
#endif
typedef struct _FlutterFilamentPlugin FlutterFilamentPlugin;
typedef struct {
GObjectClass parent_class;
} FlutterFilamentPluginClass;
FLUTTER_PLUGIN_EXPORT GType flutter_filament_plugin_get_type();
FLUTTER_PLUGIN_EXPORT void flutter_filament_plugin_register_with_registrar(
FlPluginRegistrar* registrar);
G_END_DECLS
#endif // FLUTTER_PLUGIN_FLUTTER_FILAMENT_PLUGIN_H_