Mihail

Results 144 comments of Mihail

@retterdesdialogs Could you please try https://github.com/Samsung/GearVRf/pull/1568 with the 3.x branch (maint_v3.x or apply on top of release_v3.3)? Thanks. The looping over to somewhere at the start seems to be intentional...

Instead of environment variables or relying on a fixed folder structure there is a better way. Modify gradle.properties (either the project's or the global one; global one recommended) to include:...

I guess it would be best for you to just add these properties to the gradle.properties file under ./GVRf/Framework/. Should eliminate some confusion.

@Nathipha 0. start from scratch 1. import the Framework project (GVRf/Framework/) 2. open settings.gradle (in the Android view's gradle scripts); add this ``` include ':myapp' project(':myapp').projectDir=new File('full-path-to-your-apps-module') ``` If `full-path-to-your-apps-module`...

@Nathipha The oculus sig file needs to go your app's assets folder.

Could you share the build log with us? What do you mean by "save the framework"?

@Nathipha Please add an ANDROID_NDK_HOME property to your gradle.properties file and specify the path to the your NDK installation; https://github.com/Samsung/GearVRf/wiki/Build%20Tips

@Nathipha I created a pre-release - https://github.com/Samsung/GearVRf/releases/tag/v3.0.2. This has the latest framework. Please update your application to depend on both .aars from the pre-release.

@miraclehwan Run the texture parameters block on the GL thread: ``` getGVRContext().runOnGlThread(new Runnable() { @Override public void run() { GVRTextureParameters texparams = new GVRTextureParameters(mGVRContext); texparams.setWrapSType(GVRTextureParameters.TextureWrapType.GL_REPEAT); texparams.setWrapTType(GVRTextureParameters.TextureWrapType.GL_REPEAT); EnvironmentVideoSceneObject.getRenderData().getMaterial().getMainTexture().updateTextureParameters(texparams); } }); ```...

@bohuang3d Since the the video scene object has to use an external texture, the texture wrapping mode is fixed to GL_CLAMP_TO_EDGE per OES_EGL_image_external spec. @miraclehwan I am not seeing a...