FLUTTER ECOSYSTEM

jonahwilliams/flutter_shaders

Uma coleção de utilitários para trabalhar com a API FragmentProgram

Capa do projeto flutter_shaders
Stars
127
Forks
24
Último push (UTC)
20 de jun. de 2024
Status do projeto
Ativo
Jonah Williams GitHub avatar
GITHUB User

Jonah Williams ↗

Rock, Flag, and Eagle

RobloxSan Mateo, CA
LinguagensDartGLSL

Pacotes publicados por este repositório

Dependências usadas

Lista de dependências 3 itens
  • flutter{"sdk":"flutter"}
  • vector_math^2.1.4
  • flutter_testDesenvolvimento{"sdk":"flutter"}

README original

Texto original em inglês. Visite o GitHub para a versão atual.

Expandir / recolher README

flutter_shaders

A collection of utilities to make working with the FragmentProgram API easier.

Available Shaders

This package includes a number of shaders that can be optionally included into your application by declaring them in the pubspec.yaml:

Pixelation

The pixelation shader reduces the provided sampler to MxN samples. This can be used with the [AnimatedSampler] widget. The required uniforms are:

Floats:

  • The number of pixels in the X coordinate space.
  • The number of pixels in the Y coordinate space.
  • The width of the sampled area.
  • The height of the sampled area. Samplers:
  • The child widget, captured as a texture.

To include this shader in your application, add the following line to your pubspec.yaml

flutter:
  shaders:
    - packages/flutter_shaders/shaders/pixelation.frag