HomeSort by relevance Sort by last modified time
    Searched defs:transformMatrix (Results 1 - 13 of 13) sorted by null

  /packages/apps/Camera2/src/com/android/camera/captureintent/
PreviewTransformCalculator.java 57 Matrix transformMatrix = new Matrix();
71 transformMatrix.setRectToRect(
76 transformMatrix.postRotate(
94 transformMatrix.postScale(scale, scale, previewViewCenter.x, previewViewCenter.y);
100 transformMatrix.postTranslate(
104 return transformMatrix;
  /cts/tests/tests/view/src/android/view/cts/
TextureViewCameraActivity.java 111 Matrix transformMatrix = mTextureView.getTransform(null);
113 transformMatrix.setRotate(mRotation, mWidth / 2, mHeight / 2);
114 mTextureView.setTransform(transformMatrix);
  /cts/tests/camera/src/android/hardware/camera2/cts/testcases/
Camera2MultiViewTestCase.java 190 Matrix transformMatrix = textureView.getTransform(null);
200 transformMatrix.setRectToRect(viewRect, bufRect, Matrix.ScaleToFit.FILL);
203 transformMatrix.postRotate((360 - rotationDegrees) % 360, centerX, centerY);
213 transformMatrix.postScale(scale, scale, centerX, centerY);
229 handler.post(new TransformUpdater(textureView, transformMatrix));
  /cts/tests/openglperf2/jni/primitive/fullpipeline/
FullPipelineRenderer.cpp 159 Matrix* transformMatrix = Matrix::newScale(scale, scale, scale);
160 transformMatrix->translate(i - middle, j - middle, 0.0f);
161 TransformationNode* transformNode = new TransformationNode(transformMatrix);
  /cts/tests/openglperf2/jni/reference/scene/glowing/
GlowingScene.cpp 170 Matrix* transformMatrix = Matrix::newScale(mFboRatio, 1.0f, 1.0f);
171 TransformationNode* transformNode = new TransformationNode(transformMatrix);
  /cts/tests/openglperf2/jni/reference/scene/flocking/
FlockingScene.cpp 146 Matrix* transformMatrix = Matrix::newScale(MAIN_SCALE * mDisplayRatio, MAIN_SCALE, 0.0f);
147 TransformationNode* transformNode = new TransformationNode(transformMatrix);
164 transformMatrix = Matrix::newScale(SCALE, SCALE, SCALE);
165 transformMatrix->translate(x, y, 1.0f);
166 transformMatrix->rotate(atan2(vel->mY, vel->mX) + M_PI, 0, 0, 1);
167 transformNode = new TransformationNode(transformMatrix);
175 transformMatrix = Matrix::newScale(MAIN_SCALE * mDisplayRatio, MAIN_SCALE, 1.0f);
176 transformMatrix->translate(0, 0, 0.1f);
177 transformNode = new TransformationNode(transformMatrix);
  /packages/apps/Camera2/src/com/android/camera/captureintent/resource/
ResourceSurfaceTextureImpl.java 149 Matrix transformMatrix = mPreviewTransformCalculator.toTransformMatrix(
151 mResourceConstructed.get().getModuleUI().updatePreviewTransform(transformMatrix);
  /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
SurfaceTextureHelperTest.java 47 public float[] transformMatrix;
62 int oesTextureId, float[] transformMatrix, long timestampNs) {
67 this.transformMatrix = transformMatrix;
152 drawer.drawOes(listener.oesTextureId, listener.transformMatrix, 0, 0, width, height);
223 drawer.drawOes(listener.oesTextureId, listener.transformMatrix, 0, 0, width, height);
420 listener.oesTextureId, listener.transformMatrix);
  /external/autotest/client/deps/nvmap_compactor/src/
nvmap_carveout_compactor.c 49 uniform mat4 transformMatrix; \
56 gl_Position = transformMatrix * position; \
250 GLfloat transformMatrix[16];
271 "transformMatrix");
275 LoadIdentity(transformMatrix);
276 Scale(transformMatrix, 4.0f/cols, 4.0f/cols, 4.0f/cols);
277 Translate(transformMatrix, -cols - 1.0f, cols - 1.0f, 0.0f);
281 Translate(transformMatrix, 2.0f, 0.0f, 0.0f);
283 transformMatrix);
287 Translate(transformMatrix, -2.0f*cols, -2.0f
    [all...]
  /frameworks/base/core/jni/
android_view_RenderNode.cpp 400 const SkMatrix* transformMatrix = renderNode->stagingProperties().getTransformMatrix();
402 if (transformMatrix) {
403 *outMatrix = *transformMatrix;
  /external/webrtc/talk/app/webrtc/java/src/org/webrtc/
MediaCodecVideoDecoder.java 411 private final float[] transformMatrix;
423 public DecodedTextureBuffer(int textureID, float[] transformMatrix, long timeStampMs,
426 this.transformMatrix = transformMatrix;
468 int oesTextureId, float[] transformMatrix, long timestampNs) {
476 renderedBuffer = new DecodedTextureBuffer(oesTextureId, transformMatrix,
  /frameworks/base/core/java/android/view/
ViewGroup.java     [all...]
  /prebuilts/tools/common/m2/repository/com/nineoldandroids/library/2.4.0/
library-2.4.0.jar 

Completed in 1170 milliseconds