Created
December 14, 2017 17:52
-
-
Save IjzerenHein/b8071cb3cd246edda95a2048b3a2a322 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { Component } from 'react'; | |
import { | |
StyleSheet, | |
View | |
} from 'react-native'; | |
import GL from 'gl-react'; | |
import { Surface, resolveAssetSource } from 'gl-react-native'; | |
import shader from './Shader'; | |
const shaders = GL.Shaders.create({ | |
feet: { | |
frag: shader | |
} | |
}); | |
const IMAGE_SOURCE = { | |
left: resolveAssetSource(require('./foot-left-mask.png')), | |
right: resolveAssetSource(require('./foot-right-mask.png')) | |
}; | |
const BACK_COLOR = [0, 0, 0, 255]; | |
const WIDTH = 160; | |
const HEIGHT = 320; | |
export default class App extends Component<{}> { | |
render() { | |
return ( | |
<View style={styles.container}> | |
<View style={styles.row}> | |
<Surface style={styles.cell} width={WIDTH} height={HEIGHT}> | |
<GL.Node | |
shader={shaders.feet} | |
uniforms={{ | |
dim: [WIDTH, HEIGHT], | |
backColor: BACK_COLOR, | |
image: IMAGE_SOURCE.left, | |
left: true, | |
samples: [0, 0, 0, 0, 0, 0, 0, 0], | |
}} /> | |
</Surface> | |
<Surface style={styles.cell} width={WIDTH} height={HEIGHT}> | |
<GL.Node | |
shader={shaders.feet} | |
uniforms={{ | |
dim: [WIDTH, HEIGHT], | |
backColor: BACK_COLOR, | |
image: IMAGE_SOURCE.right, | |
left: false, | |
samples: [0, 0, 0, 0, 0, 0, 0, 0], | |
}} /> | |
</Surface> | |
</View> | |
</View> | |
); | |
} | |
} | |
const styles = StyleSheet.create({ | |
container: { | |
flex: 1, | |
flexDirection: 'column' | |
}, | |
row: { | |
flex: 1, | |
flexDirection: 'row' | |
}, | |
cell: { | |
flex: 1 | |
}, | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment