We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
你好,我使用了你的sdk来做一个播放器app,播放3D180度的视频,视频源为左右显示的源,我修改了generateSphere中生成的texcoords 部分代码,分屏显示可以看出有3D的效果,但是视频对接的地方会多出一部分异常显示的纹理,一下为我修改的代码,能帮忙看看是那边改错了吗 还是修改思路不正确,谢谢! //texcoords[t] = s_S; float curTexcoord = s_S; switch (type) { case Type3D180: if (bLeft) { texcoords[t] = s< sectors/2?curTexcoord:(s-sectors/2)_S; } else{ texcoords[t] = s< sectors/2?(s + sectors/2)_S:curTexcoord; }
break;
The text was updated successfully, but these errors were encountered:
Will implement soon.
Sorry, something went wrong.
[config projectionMode:MDModeProjectionStereoSphere];
No branches or pull requests
你好,我使用了你的sdk来做一个播放器app,播放3D180度的视频,视频源为左右显示的源,我修改了generateSphere中生成的texcoords 部分代码,分屏显示可以看出有3D的效果,但是视频对接的地方会多出一部分异常显示的纹理,一下为我修改的代码,能帮忙看看是那边改错了吗 还是修改思路不正确,谢谢!
//texcoords[t] = s_S;
float curTexcoord = s_S;
switch (type) {
case Type3D180:
if (bLeft) {
texcoords[t] = s< sectors/2?curTexcoord:(s-sectors/2)_S;
}
else{
texcoords[t] = s< sectors/2?(s + sectors/2)_S:curTexcoord;
}
The text was updated successfully, but these errors were encountered: