gre / gl-react

gl-react – React library to write and compose WebGL shaders

Home Page:https://gl-react-cookbook.surge.sh

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

gl-react + react-native-view-shot : write a third lib that makes it easier

gre opened this issue · comments

to recreate this example https://projectseptemberinc.gitbooks.io/gl-react/content/docs/examples/8.html

basically it would be like

<Surface>
  <GLBlur>
    <RasterizeContent>
      <View>.......</View>
    </RasterizeContent>
  </GLBlur>
</Surface>

technically it should be feasible for the RasterizeContent lib to add a texture loader into gl-react that support its instance and would snapshot the thing. also think I should fix gre/react-native-view-shot#48 first so it's a simple use of that Snapshotable.

(RasterizeContent make have whatever different name)

if some content needs to continously refresh, there could be a prop to set that. basically means to call context.glParent.redraw() in a render loop

created https://github.com/gre/react-native-webgl-view-shot but now need to think how things will interoperate