如何在android相机中使用anyFile.vsh和anyFile.fsh提供着色器效果?
在我的应用程序中,我必须使用 Android 相机和 OpenGLES。 我还必须使用两个名为 one.vsh 和 one.fsh 的文件为相机视觉提供效果,但我不知道如何在 OpenGLES 中实现该文件。
即使我也不知道如何实现 android 相机与 OPENGLES 一起使用这两个文件来实现效果。
请帮助我。 谢谢。
In My application i have to use the Android Camera, and OpenGLES.
I have also have to give the effect to the Camera Vision with two files called one.vsh and one.fsh But i dont know how to implement that file in OpenGLES.
Even i also dont know how to implement android camera to work with OPENGLES to do effect with that two files.
Please help me for this.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
嗯,我没有对Android相机进行过测试来使用这种效果。
当然,您可以在
onSurfaceCreated
方法中使用着色器文件,如下所示:只需替换要用于顶点着色器和片段着色器的
String
即可。希望这有帮助。
Well, I don't have a test about Android camera to use such effect on it.
But ofcourse, you can use the shader file in the
onSurfaceCreated
method as like below:Just replace the
String
that you want to use for vertex shader and fragment shader.Hope this helps.