code
stringlengths
73
34.1k
label
stringclasses
1 value
public void setValue(Quaternionf rot) { mX = rot.x; mY = rot.y; mZ = rot.z; mW = rot.w; }
java
public void update(int width, int height, float[] data) throws IllegalArgumentException { if ((width <= 0) || (height <= 0) || (data == null) || (data.length < height * width * mFloatsPerPixel)) { throw new IllegalArgumentException(); } NativeFloat...
java
public String[] getUrl() { String[] valueDestination = new String[ url.size() ]; this.url.getValue(valueDestination); return valueDestination; }
java
protected float getSizeArcLength(float angle) { if (mRadius <= 0) { throw new IllegalArgumentException("mRadius is not specified!"); } return angle == Float.MAX_VALUE ? Float.MAX_VALUE : LayoutHelpers.lengthOfArc(angle, mRadius); }
java
public void writeLine(String pattern, Object... parameters) { String line = (parameters == null || parameters.length == 0) ? pattern : String.format(pattern, parameters); lines.add(0, line); // we'll write bottom to top, then purge unwritten // lines from end updateHUD();...
java
public void setCanvasWidthHeight(int width, int height) { hudWidth = width; hudHeight = height; HUD = Bitmap.createBitmap(width, height, Config.ARGB_8888); canvas = new Canvas(HUD); texture = null; }
java
public static void scale(GVRMesh mesh, float x, float y, float z) { final float [] vertices = mesh.getVertices(); final int vsize = vertices.length; for (int i = 0; i < vsize; i += 3) { vertices[i] *= x; vertices[i + 1] *= y; vertices[i + 2] *= z; ...
java
public static void resize(GVRMesh mesh, float xsize, float ysize, float zsize) { float dim[] = getBoundingSize(mesh); scale(mesh, xsize / dim[0], ysize / dim[1], zsize / dim[2]); }
java
public static void resize(GVRMesh mesh, float size) { float dim[] = getBoundingSize(mesh); float maxsize = 0.0f; if (dim[0] > maxsize) maxsize = dim[0]; if (dim[1] > maxsize) maxsize = dim[1]; if (dim[2] > maxsize) maxsize = dim[2]; scale(mesh, size / maxsize); }
java
public static float[] getBoundingSize(GVRMesh mesh) { final float [] dim = new float[3]; final float [] vertices = mesh.getVertices(); final int vsize = vertices.length; float minx = Integer.MAX_VALUE; float miny = Integer.MAX_VALUE; float minz = Integer.MAX_VALUE; ...
java
public static GVRMesh createQuad(GVRContext gvrContext, float width, float height) { GVRMesh mesh = new GVRMesh(gvrContext); float[] vertices = { width * -0.5f, height * 0.5f, 0.0f, width * -0.5f, height * -0.5f, 0.0f, width * 0.5f, height * 0.5f, 0.0f, width * 0.5f, hei...
java
void onSurfaceChanged(int width, int height) { Log.v(TAG, "onSurfaceChanged"); final VrAppSettings.EyeBufferParams.DepthFormat depthFormat = mApplication.getAppSettings().getEyeBufferParams().getDepthFormat(); mApplication.getConfigurationManager().configureRendering(VrAppSettings.EyeBufferPara...
java
void onDrawEye(int eye, int swapChainIndex, boolean use_multiview) { mCurrentEye = eye; if (!(mSensoredScene == null || !mMainScene.equals(mSensoredScene))) { GVRCameraRig mainCameraRig = mMainScene.getMainCameraRig(); if (use_multiview) { if (DEBUG_STATS) { ...
java
public GVRAndroidResource openResource(String filePath) throws IOException { // Error tolerance: Remove initial '/' introduced by file::///filename // In this case, the path is interpreted as relative to defaultPath, // which is the root of the filesystem. if (filePath.startsWith(File.se...
java
protected String adaptFilePath(String filePath) { // Convert windows file path to target FS String targetPath = filePath.replaceAll("\\\\", volumeType.getSeparator()); return targetPath; }
java
public FloatBuffer getFloatVec(String attributeName) { int size = getAttributeSize(attributeName); if (size <= 0) { return null; } size *= 4 * getVertexCount(); ByteBuffer buffer = ByteBuffer.allocateDirect(size).order(ByteOrder.nativeOrder()); Flo...
java
public float[] getFloatArray(String attributeName) { float[] array = NativeVertexBuffer.getFloatArray(getNative(), attributeName); if (array == null) { throw new IllegalArgumentException("Attribute name " + attributeName + " cannot be accessed"); } return array; ...
java
public IntBuffer getIntVec(String attributeName) { int size = getAttributeSize(attributeName); if (size <= 0) { return null; } size *= 4 * getVertexCount(); ByteBuffer buffer = ByteBuffer.allocateDirect(size).order(ByteOrder.nativeOrder()); IntBuff...
java
public int[] getIntArray(String attributeName) { int[] array = NativeVertexBuffer.getIntArray(getNative(), attributeName); if (array == null) { throw new IllegalArgumentException("Attribute name " + attributeName + " cannot be accessed"); } return array; }
java
public float getSphereBound(float[] sphere) { if ((sphere == null) || (sphere.length != 4) || ((NativeVertexBuffer.getBoundingVolume(getNative(), sphere)) < 0)) { throw new IllegalArgumentException("Cannot copy sphere bound into array provided"); } return sphe...
java
public boolean getBoxBound(float[] corners) { int rc; if ((corners == null) || (corners.length != 6) || ((rc = NativeVertexBuffer.getBoundingVolume(getNative(), corners)) < 0)) { throw new IllegalArgumentException("Cannot copy box bound into array provided"); ...
java
public void load(String soundFile) { if (mSoundFile != null) { unload(); } mSoundFile = soundFile; if (mAudioListener != null) { mAudioListener.getAudioEngine().preloadSoundFile(soundFile); Log.d("SOUND", "loaded audio file %s", get...
java
public void unload() { if (mAudioListener != null) { Log.d("SOUND", "unloading audio source %d %s", getSourceId(), getSoundFile()); mAudioListener.getAudioEngine().unloadSoundFile(getSoundFile()); } mSoundFile = null; mSourceId = GvrAudioEngine.INVALID...
java
public void pause() { if (mAudioListener != null) { int sourceId = getSourceId(); if (sourceId != GvrAudioEngine.INVALID_ID) { mAudioListener.getAudioEngine().pauseSound(sourceId); } } }
java
public void stop() { if (mAudioListener != null) { Log.d("SOUND", "stopping audio source %d %s", getSourceId(), getSoundFile()); mAudioListener.getAudioEngine().stopSound(getSourceId()); } }
java
public void setVolume(float volume) { // Save this in case this audio source is not being played yet mVolume = volume; if (isPlaying() && (getSourceId() != GvrAudioEngine.INVALID_ID)) { // This will actually work only if the sound file is being played mAudioLi...
java
public float get(Layout.Axis axis) { switch (axis) { case X: return x; case Y: return y; case Z: return z; default: throw new RuntimeAssertion("Bad axis specified: %s", axis); } }
java
public void set(float val, Layout.Axis axis) { switch (axis) { case X: x = val; break; case Y: y = val; break; case Z: z = val; break; default: throw ne...
java
public Vector3Axis delta(Vector3f v) { Vector3Axis ret = new Vector3Axis(Float.NaN, Float.NaN, Float.NaN); if (x != Float.NaN && v.x != Float.NaN && !equal(x, v.x)) { ret.set(x - v.x, Layout.Axis.X); } if (y != Float.NaN && v.y != Float.NaN && !equal(y, v.y)) { re...
java
public int setPageCount(final int num) { int diff = num - getCheckableCount(); if (diff > 0) { addIndicatorChildren(diff); } else if (diff < 0) { removeIndicatorChildren(-diff); } if (mCurrentPage >=num ) { mCurrentPage = 0; } s...
java
public boolean setCurrentPage(final int page) { Log.d(TAG, "setPageId pageId = %d", page); return (page >= 0 && page < getCheckableCount()) && check(page); }
java
public void loadPhysics(String filename, GVRScene scene) throws IOException { GVRPhysicsLoader.loadPhysicsFile(getGVRContext(), filename, true, scene); }
java
public void rotateToFaceCamera(final GVRTransform transform) { //see http://stackoverflow.com/questions/5782658/extracting-yaw-from-a-quaternion final GVRTransform t = getMainCameraRig().getHeadTransform(); final Quaternionf q = new Quaternionf(0, t.getRotationY(), 0, t.getRotationW()).normalize...
java
public float rotateToFaceCamera(final Widget widget) { final float yaw = getMainCameraRigYaw(); GVRTransform t = getMainCameraRig().getHeadTransform(); widget.rotateWithPivot(t.getRotationW(), 0, t.getRotationY(), 0, 0, 0, 0); return yaw; }
java
public void updateFrontFacingRotation(float rotation) { if (!Float.isNaN(rotation) && !equal(rotation, frontFacingRotation)) { final float oldRotation = frontFacingRotation; frontFacingRotation = rotation % 360; for (OnFrontRotationChangedListener listener : mOnFrontRotationC...
java
public void rotateToFront() { GVRTransform transform = mSceneRootObject.getTransform(); transform.setRotation(1, 0, 0, 0); transform.rotateByAxisWithPivot(-frontFacingRotation + 180, 0, 1, 0, 0, 0, 0); }
java
public void setScale(final float scale) { if (equal(mScale, scale) != true) { Log.d(TAG, "setScale(): old: %.2f, new: %.2f", mScale, scale); mScale = scale; setScale(mSceneRootObject, scale); setScale(mMainCameraRootObject, scale); setScale(mLeftCamera...
java
public GVRAnimation setRepeatMode(int repeatMode) { if (GVRRepeatMode.invalidRepeatMode(repeatMode)) { throw new IllegalArgumentException(repeatMode + " is not a valid repetition type"); } mRepeatMode = repeatMode; return this; }
java
public GVRAnimation setOffset(float startOffset) { if(startOffset<0 || startOffset>mDuration){ throw new IllegalArgumentException("offset should not be either negative or greater than duration"); } animationOffset = startOffset; mDuration = mDuration-animationOffset; ...
java
public GVRAnimation setDuration(float start, float end) { if(start>end || start<0 || end>mDuration){ throw new IllegalArgumentException("start and end values are wrong"); } animationOffset = start; mDuration = end-start; return this; }
java
public GVRAnimation setOnFinish(GVROnFinish callback) { mOnFinish = callback; // Do the instance-of test at set-time, not at use-time mOnRepeat = callback instanceof GVROnRepeat ? (GVROnRepeat) callback : null; if (mOnRepeat != null) { mRepeatCount = -1; // l...
java
public synchronized void bindShader(GVRScene scene, boolean isMultiview) { GVRRenderPass pass = mRenderPassList.get(0); GVRShaderId shader = pass.getMaterial().getShaderType(); GVRShader template = shader.getTemplate(getGVRContext()); if (template != null) { templ...
java
public GVRRenderData setCullFace(GVRCullFaceEnum cullFace, int passIndex) { if (passIndex < mRenderPassList.size()) { mRenderPassList.get(passIndex).setCullFace(cullFace); } else { Log.e(TAG, "Trying to set cull face to a invalid pass. Pass " + passIndex + " was not created."); ...
java
public GVRRenderData setDrawMode(int drawMode) { if (drawMode != GL_POINTS && drawMode != GL_LINES && drawMode != GL_LINE_STRIP && drawMode != GL_LINE_LOOP && drawMode != GL_TRIANGLES && drawMode != GL_TRIANGLE_STRIP && drawMode != GL_TRIANGLE_FAN) { t...
java
public boolean fling(float velocityX, float velocityY, float velocityZ) { boolean scrolled = true; float viewportX = mScrollable.getViewPortWidth(); if (Float.isNaN(viewportX)) { viewportX = 0; } float maxX = Math.min(MAX_SCROLLING_DISTANCE, viewportX...
java
public int scrollToNextPage() { Log.d(Log.SUBSYSTEM.LAYOUT, TAG, "scrollToNextPage getCurrentPage() = %d currentIndex = %d", getCurrentPage(), mCurrentItemIndex); if (mSupportScrollByPage) { scrollToPage(getCurrentPage() + 1); } else { Log.w(TAG, "Paginat...
java
public int scrollToPage(int pageNumber) { Log.d(Log.SUBSYSTEM.LAYOUT, TAG, "scrollToPage pageNumber = %d mPageCount = %d", pageNumber, mPageCount); if (mSupportScrollByPage && (mScrollOver || (pageNumber >= 0 && pageNumber <= mPageCount - 1))) { scrollToItem(...
java
public int scrollToItem(int position) { Log.d(Log.SUBSYSTEM.LAYOUT, TAG, "scrollToItem position = %d", position); scrollToPosition(position); return mCurrentItemIndex; }
java
public int getCurrentPage() { int currentPage = 1; int count = mScrollable.getScrollingItemsCount(); if (mSupportScrollByPage && mCurrentItemIndex >= 0 && mCurrentItemIndex < count) { currentPage = (Math.min(mCurrentItemIndex + mPageSize - 1, count - 1)/mPageSize); ...
java
public String getName() { GVRSceneObject owner = getOwnerObject(); String name = ""; if (owner != null) { name = owner.getName(); if (name == null) return ""; } return name; }
java
public void setFinalTransformMatrix(Matrix4f finalTransform) { float[] mat = new float[16]; finalTransform.get(mat); NativeBone.setFinalTransformMatrix(getNative(), mat); }
java
public Matrix4f getFinalTransformMatrix() { final FloatBuffer fb = ByteBuffer.allocateDirect(4*4*4).order(ByteOrder.nativeOrder()).asFloatBuffer(); NativeBone.getFinalTransformMatrix(getNative(), fb); return new Matrix4f(fb); }
java
@Override public void prettyPrint(StringBuffer sb, int indent) { sb.append(Log.getSpaces(indent)); sb.append(GVRBone.class.getSimpleName()); sb.append(" [name=" + getName() + ", boneId=" + getBoneId() + ", offsetMatrix=" + getOffsetMatrix() + ", finalTrans...
java
public void update(int width, int height, int sampleCount) { if (capturing) { throw new IllegalStateException("Cannot update backing texture while capturing"); } this.width = width; this.height = height; if (sampleCount == 0) captureTexture = new GVRRend...
java
public void setCapture(boolean capture, float fps) { capturing = capture; NativeTextureCapturer.setCapture(getNative(), capture, fps); }
java
public void setTexture(GVRRenderTexture texture) { mTexture = texture; NativeRenderTarget.setTexture(getNative(), texture.getNative()); }
java
public <T extends Widget & Checkable> boolean addOnCheckChangedListener (OnCheckChangedListener listener) { final boolean added; synchronized (mListeners) { added = mListeners.add(listener); } if (added) { List<T> c = getCheckableChildren(); ...
java
public <T extends Widget & Checkable> boolean check(int checkableIndex) { List<T> children = getCheckableChildren(); T checkableWidget = children.get(checkableIndex); return checkInternal(checkableWidget, true); }
java
public <T extends Widget & Checkable> boolean uncheck(int checkableIndex) { List<T> children = getCheckableChildren(); T checkableWidget = children.get(checkableIndex); return checkInternal(checkableWidget, false); }
java
public <T extends Widget & Checkable> void clearChecks() { List<T> children = getCheckableChildren(); for (T c : children) { c.setChecked(false); } }
java
public <T extends Widget & Checkable> List<T> getCheckedWidgets() { List<T> checked = new ArrayList<>(); for (Widget c : getChildren()) { if (c instanceof Checkable && ((Checkable) c).isChecked()) { checked.add((T) c); } } return checked; }
java
public <T extends Widget & Checkable> List<Integer> getCheckedWidgetIndexes() { List<Integer> checked = new ArrayList<>(); List<Widget> children = getChildren(); final int size = children.size(); for (int i = 0, j = -1; i < size; ++i) { Widget c = children.get(i); ...
java
public <T extends Widget & Checkable> List<T> getCheckableChildren() { List<Widget> children = getChildren(); ArrayList<T> result = new ArrayList<>(); for (Widget c : children) { if (c instanceof Checkable) { result.add((T) c); } } return r...
java
public boolean setUpCameraForVrMode(final int fpsMode) { cameraSetUpStatus = false; this.fpsMode = fpsMode; if (!isCameraOpen) { Log.e(TAG, "Camera is not open"); return false; } if (fpsMode < 0 || fpsMode > 2) { Log.e(TAG, ...
java
static GVROrthogonalCamera makeOrthoShadowCamera(GVRPerspectiveCamera centerCam) { GVROrthogonalCamera shadowCam = new GVROrthogonalCamera(centerCam.getGVRContext()); float near = centerCam.getNearClippingDistance(); float far = centerCam.getFarClippingDistance(); float fovy = (float...
java
static GVRPerspectiveCamera makePerspShadowCamera(GVRPerspectiveCamera centerCam, float coneAngle) { GVRPerspectiveCamera camera = new GVRPerspectiveCamera(centerCam.getGVRContext()); float near = centerCam.getNearClippingDistance(); float far = centerCam.getFarClippingDistance(); c...
java
private void SetNewViewpoint(String url) { Viewpoint vp = null; // get the name without the '#' sign String vpURL = url.substring(1, url.length()); for (Viewpoint viewpoint : viewpoints) { if ( viewpoint.getName().equalsIgnoreCase(vpURL) ) { vp = viewpoint; ...
java
private void WebPageCloseOnClick(GVRViewSceneObject gvrWebViewSceneObject, GVRSceneObject gvrSceneObjectAnchor, String url) { final String urlFinal = url; webPagePlusUISceneObject = new GVRSceneObject(gvrContext); webPagePlusUISceneObject.getTransform().setPosition(webPagePlusUIPosition[0], web...
java
public Axis getOrientationAxis() { final Axis axis; switch(getOrientation()) { case HORIZONTAL: axis = Axis.X; break; case VERTICAL: axis = Axis.Y; break; case STACK: axis = Axis.Z; ...
java
public boolean attachComponent(GVRComponent component) { if (component.getNative() != 0) { NativeSceneObject.attachComponent(getNative(), component.getNative()); } synchronized (mComponents) { long type = component.getType(); if (!mComponents.containsKey(type)...
java
public GVRComponent detachComponent(long type) { NativeSceneObject.detachComponent(getNative(), type); synchronized (mComponents) { GVRComponent component = mComponents.remove(type); if (component != null) { component.setOwnerObject(null); } ...
java
@SuppressWarnings("unchecked") public <T extends GVRComponent> ArrayList<T> getAllComponents(long type) { ArrayList<T> list = new ArrayList<T>(); GVRComponent component = getComponent(type); if (component != null) list.add((T) component); for (GVRSceneObject child : mChil...
java
public void setPickingEnabled(boolean enabled) { if (enabled != getPickingEnabled()) { if (enabled) { attachComponent(new GVRSphereCollider(getGVRContext())); } else { detachComponent(GVRCollider.getComponentType()); } } }
java
public int removeChildObjectsByName(final String name) { int removed = 0; if (null != name && !name.isEmpty()) { removed = removeChildObjectsByNameImpl(name); } return removed; }
java
public boolean removeChildObjectByName(final String name) { if (null != name && !name.isEmpty()) { GVRSceneObject found = null; for (GVRSceneObject child : mChildren) { GVRSceneObject object = child.getSceneObjectByName(name); if (object != null) { ...
java
protected void onNewParentObject(GVRSceneObject parent) { for (GVRComponent comp : mComponents.values()) { comp.onNewOwnersParent(parent); } }
java
protected void onRemoveParentObject(GVRSceneObject parent) { for (GVRComponent comp : mComponents.values()) { comp.onRemoveOwnersParent(parent); } }
java
public void prettyPrint(StringBuffer sb, int indent) { sb.append(Log.getSpaces(indent)); sb.append(getClass().getSimpleName()); sb.append(" [name="); sb.append(this.getName()); sb.append("]"); sb.append(System.lineSeparator()); GVRRenderData rdata = getRenderData(...
java
public void setControllerModel(GVRSceneObject controllerModel) { if (mControllerModel != null) { mControllerGroup.removeChildObject(mControllerModel); } mControllerModel = controllerModel; mControllerGroup.addChildObject(mControllerModel); mControllerModel...
java
@Override public void setCursorDepth(float depth) { super.setCursorDepth(depth); if (mRayModel != null) { mRayModel.getTransform().setScaleZ(mCursorDepth); } }
java
@Override public void setPosition(float x, float y, float z) { position.set(x, y, z); pickDir.set(x, y, z); pickDir.normalize(); invalidate(); }
java
@SuppressWarnings("unused") public Handedness getHandedness() { if ((currentControllerEvent == null) || currentControllerEvent.isRecycled()) { return null; } return currentControllerEvent.handedness == 0.0f ? Handedness.LEFT : Handedness.RIGHT; }
java
protected void updatePicker(MotionEvent event, boolean isActive) { final MotionEvent newEvent = (event != null) ? event : null; final ControllerPick controllerPick = new ControllerPick(mPicker, newEvent, isActive); context.runOnGlThread(controllerPick); }
java
public static JSONObject loadJSONAsset(Context context, final String asset) { if (asset == null) { return new JSONObject(); } return getJsonObject(org.gearvrf.widgetlib.main.Utility.readTextFile(context, asset)); }
java
public static int getJSONColor(final JSONObject json, String elementName) throws JSONException { Object raw = json.get(elementName); return convertJSONColor(raw); }
java
public static GVRTexture loadFutureCubemapTexture( GVRContext gvrContext, ResourceCache<GVRImage> textureCache, GVRAndroidResource resource, int priority, Map<String, Integer> faceIndexMap) { GVRTexture tex = new GVRTexture(gvrContext); GVRImage cached = textureCache....
java
public static void loadCubemapTexture(final GVRContext context, ResourceCache<GVRImage> textureCache, final TextureCallback callback, final GVRAndroidResource resource, int priority, ...
java
public static Bitmap decodeStream(InputStream stream, boolean closeStream) { return AsyncBitmapTexture.decodeStream(stream, AsyncBitmapTexture.glMaxTextureSize, AsyncBitmapTexture.glMaxTextureSize, true, null, closeStream); }
java
public GVRShaderId getShaderType(Class<? extends GVRShader> shaderClass) { GVRShaderId shaderId = mShaderTemplates.get(shaderClass); if (shaderId == null) { GVRContext ctx = getGVRContext(); shaderId = new GVRShaderId(shaderClass); mShaderTemplates.put(sh...
java
static String makeLayout(String descriptor, String blockName, boolean useUBO) { return NativeShaderManager.makeLayout(descriptor, blockName, useUBO); }
java
public void rotateWithPivot(float quatW, float quatX, float quatY, float quatZ, float pivotX, float pivotY, float pivotZ) { NativeTransform.rotateWithPivot(getNative(), quatW, quatX, quatY, quatZ, pivotX, pivotY, pivotZ); }
java
public static void setFaceNames(String[] nameArray) { if (nameArray.length != 6) { throw new IllegalArgumentException("nameArray length is not 6."); } for (int i = 0; i < 6; i++) { faceIndexMap.put(nameArray[i], i); } }
java
public boolean startDrag(final GVRSceneObject sceneObject, final float hitX, final float hitY, final float hitZ) { final GVRRigidBody dragMe = (GVRRigidBody)sceneObject.getComponent(GVRRigidBody.getComponentType()); if (dragMe == null || dragMe.getSimulationType() != GVRRigi...
java
public void stopDrag() { mPhysicsDragger.stopDrag(); mPhysicsContext.runOnPhysicsThread(new Runnable() { @Override public void run() { if (mRigidBodyDragMe != null) { NativePhysics3DWorld.stopDrag(getNative()); mRigidBodyDr...
java
public void setValue(Vector3f scale) { mX = scale.x; mY = scale.y; mZ = scale.z; }
java
public void selectByName(String childName) { int i = 0; GVRSceneObject owner = getOwnerObject(); if (owner == null) { return; } for (GVRSceneObject child : owner.children()) { if (child.getName().equals(childName)) { ...
java
public void onAttach(GVRSceneObject sceneObj) { super.onAttach(sceneObj); GVRComponent comp = getComponent(GVRRenderData.getComponentType()); if (comp == null) { throw new IllegalStateException("Cannot attach a morph to a scene object without a base mesh"); } ...
java
protected boolean intersect(GVRSceneObject.BoundingVolume bv1, GVRSceneObject.BoundingVolume bv2) { return (bv1.maxCorner.x >= bv2.minCorner.x) && (bv1.maxCorner.y >= bv2.minCorner.y) && (bv1.maxCorner.z >= bv2.minCorner.z) && (bv1.minCorner.x <= bv2.maxCorne...
java
public static GVRVideoSceneObjectPlayer<MediaPlayer> makePlayerInstance(final MediaPlayer mediaPlayer) { return new GVRVideoSceneObjectPlayer<MediaPlayer>() { @Override public MediaPlayer getPlayer() { return mediaPlayer; } @Override p...
java
public void setRefreshFrequency(IntervalFrequency frequency) { if (NONE_REFRESH_INTERVAL == mRefreshInterval && IntervalFrequency.NONE != frequency) { // Install draw-frame listener if frequency is no longer NONE getGVRContext().unregisterDrawFrameListener(mFrameListener); ge...
java