protected void setPoint(final int location, final PointF point) {
runOnDraw(new Runnable() {
@Override
public void run() {
float[] vec2 = new float[2];
vec2[0] = point.x;
vec2[1] = point.y;
GLES20.glUniform2fv(location, 1, vec2, 0);
}
});
}
GPUImageFilter.java 文件源码
java
阅读 36
收藏 0
点赞 0
评论 0
项目:FilterPlayer
作者:
评论列表
文章目录