Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alnitak/flutter_opengl
A Flutter OpenGL ES plugin using a Texture() widget. Supports Android, Linux and Windows. Many shaders from ShaderToy.com can be copy/pasted
https://github.com/alnitak/flutter_opengl
flutter flutter-plugin gles glsl opengl shadertoy
Last synced: 7 days ago
JSON representation
A Flutter OpenGL ES plugin using a Texture() widget. Supports Android, Linux and Windows. Many shaders from ShaderToy.com can be copy/pasted
- Host: GitHub
- URL: https://github.com/alnitak/flutter_opengl
- Owner: alnitak
- License: other
- Created: 2019-06-11T19:46:05.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-03-18T16:59:56.000Z (over 1 year ago)
- Last Synced: 2024-10-03T10:22:06.326Z (about 1 month ago)
- Topics: flutter, flutter-plugin, gles, glsl, opengl, shadertoy
- Language: C++
- Homepage:
- Size: 51.9 MB
- Stars: 178
- Watchers: 7
- Forks: 20
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# flutter_opengl
A Flutter OpenGL ES plugin using a Texture() widget. Supports Android, Linux and Windows. Many shaders from ShaderToy.com can be copy/pasted
## Getting Started
| Android | Windows | Linux | iOS | MacOS | Web|
| ---- | ---- | ---- | ---- | ---- | ---- |
| ✅ | ✅ | ✅ | x | x | x|![gif](https://github.com/alnitak/flutter_opengl/blob/master/images/flutter_opengl.gif?raw=true "Flutter OpenGL Demo")
![gif](https://github.com/alnitak/flutter_opengl/blob/master/images/flutter_OpenGL-video.gif?raw=true "Flutter OpenGL Demo")
![gif](https://github.com/alnitak/flutter_opengl/blob/master/images/flutter_OpenGL-textures.gif?raw=true "Flutter OpenGL Demo")The main workflow of the plugin is:
- ask to native code with a MethodChannel for a texture ID
- use the texture ID in a Texture() widget
- set a vertex and a fragment sources
- start the renderer
- change shader sources on the flyAll functionalities, but the first call to the first method channel, use FFI calls.
The starting idea developing this plugin, was not just to use GLSL, but also take advantage of the wonderful [ShaderToy](https://www.shadertoy.com/) web site.
For now it's possible to copy/paste shaders from ShaderToy, but only those which have only one layer.
Be aware that on a real device, many shaders could be very slow because they are hungry of power and some others needs ES 3 and for now is not supported on Android (ie latest 3 shaders in the *lib/main_in_deep.dart* example).
***iResolution***, ***iTime***, ***iMouse***, ***iChannel[0-3]*** are supported, other uniforms can be added at run-time.
- ***iResolution*** is a vec3 uniform which represents the texture size
- ***iTime*** is a float which represents the time since the shader was created
- ***iMouse*** is a vec4 which the x and y values represent the coordinates where the mouse or the touch is grabbed hover the *Texture()* widget
- ***iChannel[0-3]*** Sampler2D uniform textures### Simple example
```dart
SizedBox(
width: 400,
height: 300,
child: FutureBuilder(
/// The surface size identifies the real texture size and
/// it is not related to the above SizedBox size
future: OpenGLController().openglPlugin.createSurface(300, 200),
builder: (_, snapshot) {
if (snapshot.hasError || !snapshot.hasData) {
return const SizedBox.shrink();
}
/// When the texture id is retrieved, it will be possible
/// to start the renderer, set a shader and display it./// Start renderer thread
OpenGLController().openglFFI.startThread();/// Set the fragment shader
OpenGLController().openglFFI.setShaderToy(fShader);/// build the texture widget
return OpenGLTexture(id: snapshot.data!);
},
),
)
```
Look at ***example/lib/main_in_deep.dart*** for a full fledged example.Once the renderer is started all the below methods can be used via *OpenGLController().openglFFI*:
| method | description |
| ---- | ---- |
| bool **rendererStatus**() | Returns true if the texture has been created successfully via *OpenGLController().openglPlugin.createSurface()* |
| Size **getTextureSize**() | Get the size of the current texture. If not set it returns Size(-1, -1)|
| **startThread**() | Starts the drawing thread loop. |
| **stopThread**() | Delete shader, delete texture and stops the drawing thread loop. |
|String **setShader**(bool isContinuous, String vertexShader, String fragmentShader)|**isContinuous** not used yet.
**vertexShader** String of the vertex shader source.
**fragmentShader** String of the fragment shader source
returns the compiling shader error string or an empty string if no errors.|
| String **setShaderToy**(String fragmentShader) |Set the shader to be used in the current texture.
These are only fragment shaders taken from ShaderToy.com
Many of the shaders can be copy/pasted, but they must have only the "image" layer (ie no buffer).
Also many of them could be heavy for mobile devices (few FPS).
The uniforms actually available and automatically registered are:
float **iTime**
vec4 **iMouse**
vec3 **iResolution**
Sampler2D **iChannel[0-3]**|
| String **getVertexShader**() |Get current vertex shader text.|
| String **getFragmentShader**() |Get current fragment shader text.|
| **addShaderToyUniforms**() |add these uniforms:
vec4 **iMouse**
vec3 **iResolution**
float **iTime**
Sampler2D **iChannel[0-3]**
These uniforms are automatically set when using **setShaderToy()**|
|**setMousePosition**(Offset startingPos, Offset pos, PointerEventType eventType, Size twSize)|Set the **iMouse** uniform.
How to use the mouse input (only left button supported):
mouse.xy = mouse position during last button down
abs(mouse.zw) = mouse position during last button click
sign(mouze.z) = button is down
sign(mouze.w) = button is clicked
This is automatically processed by **OpenGLTexture** widget
For reference:
https://www.shadertoy.com/view/llySRh
https://www.shadertoy.com/view/Mss3zH|
| double **getFps**() |Get current FPS (capped to 100).|
|bool **addBoolUniform**(String name, bool val)
bool **addIntUniform**(String name, int val)
bool **addFloatUniform**(String name, double val)
bool **addVec2Uniform**(String name, List`` val)
bool **addVec3Uniform**(String name, List`` val)
bool **addVec4Uniform**(String name, List`` val)
bool **addMat2Uniform**(String name, List`` val)
bool **addMat3Uniform**(String name, List`` val)
bool **addMat4Uniform**(String name, List`` val)| Add an uniforms.
Return true if succes or false if already added.|
|bool **addSampler2DUniform**(String name, int width, int height, Uint8List val)| Add a Sampler2D uniform. The raw image stored in *val* must be in RGBA32 format.|
|bool **replaceSampler2DUniform**(String name, int width, int height, Uint8List val)|Replace a Sampler2D uniform texture with another one with different size.|
|bool **setBoolUniform**(String name, bool val)
bool **setIntUniform**(String name, int val)
bool **setFloatUniform**(String name, double val)
bool **setVec2Uniform**(String name, List`` val)
bool **setVec3Uniform**(String name, List`` val)
bool **setVec4Uniform**(String name, List`` val)
bool **setMat2Uniform**(String name, List`` val)
bool **setMat3Uniform**(String name, List`` val)
bool **setMat4Uniform**(String name, List`` val)| Set value of an existing uniform. Return false if the uniform doesn't exist.|
|bool **setSampler2DUniform**(String name, Uint8List val)|Replace a texture with another image with the same size.
Be sure the *val* length is the same as the previously stored image with the uniform named *name*.|
|bool **startCaptureOnSampler2D**(String name, String completeFilePath)|Set Sampler2D uniform *name* with frames captured by OpenCV VideoCapture
*completeFilePath* can be:
- 'cam0' for webCam0
- 'cam1' for webCam1
- a complete local video file path
**Note**: this video capture is just for reference on how textures work in real time. Videos FPS are not precise and the camera on Android doesn't work.|
| bool **stopCapture**() | Stop capturing thread.|# Setup
## Linux
Be sure you have **glew**, **glm** and **OpenCV** packages installed.## Windows
Go into the windows folder from the project root.
- clone **Native_SDK**:```git clone https://github.com/powervr-graphics/Native_SDK.git```
you can safely delete all but the *lib* and *include* directories from the cloned repo
- clone **glm**
```git clone https://github.com/g-truc/glm.git```
- download **glew** *Binaries for Windows 32-bit and 64-bit* from here:
[https://glew.sourceforge.net](https://glew.sourceforge.net/) (sources at https://github.com/nigels-com/glew)
extract the zip and rename its main directory to "glew"
- run "SCRIPTS\setupOpenCV-windows.bat" or manually download OpenCV and extract it into SCRIPT dir:
https://github.com/opencv/opencv/releases/download/4.7.0/opencv-4.7.0-windows.exe## Android
Run the script *SCRIPT/setupOpenCV-android.sh* or manually download OpenCV from here https://github.com/opencv/opencv/releases/download/4.7.0/opencv-4.7.0-android-sdk.zip locate libs and include folders and copy them into android/src/opencv.# TODO
- better docomentation
- the c/c++ code is not "state of the art" written! PRs are welcomed
- iOS, Mac and Web support
- ES 3 on Android (now supports 2)
- displayed FPS seems not to be correct
- leave OpenCV into the plugin for further use?