rename plugin from PolyvoxFilament to FlutterFilament

rename plugin from PolyvoxFilament to FlutterFilament
This commit is contained in:
Nick Fisher
2023-10-26 14:05:03 +11:00
parent b42d31a773
commit 8b9e6a2b3a
125 changed files with 1539 additions and 1460 deletions

View File

@@ -0,0 +1,27 @@
#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_

View File

@@ -1,5 +1,5 @@
#ifndef POLYVOX_FILAMENT_LINUX_RESOURCE_LOADER_H
#define POLYVOX_FILAMENT_LINUX_RESOURCE_LOADER_H
#ifndef FLUTTER_FILAMENT_LINUX_RESOURCE_LOADER_H
#define FLUTTER_FILAMENT_LINUX_RESOURCE_LOADER_H
#include <math.h>
#include <iostream>

View File

@@ -1,27 +0,0 @@
#ifndef FLUTTER_PLUGIN_POLYVOX_FILAMENT_PLUGIN_H_
#define FLUTTER_PLUGIN_POLYVOX_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 _PolyvoxFilamentPlugin PolyvoxFilamentPlugin;
typedef struct {
GObjectClass parent_class;
} PolyvoxFilamentPluginClass;
FLUTTER_PLUGIN_EXPORT GType polyvox_filament_plugin_get_type();
FLUTTER_PLUGIN_EXPORT void polyvox_filament_plugin_register_with_registrar(
FlPluginRegistrar* registrar);
G_END_DECLS
#endif // FLUTTER_PLUGIN_POLYVOX_FILAMENT_PLUGIN_H_