HomeSort by relevance Sort by last modified time
    Searched refs:transformMatrix (Results 1 - 24 of 24) 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;
  /external/webrtc/talk/app/webrtc/java/android/org/webrtc/
SurfaceTextureHelper.java 65 int oesTextureId, float[] transformMatrix, long timestampNs);
189 int width, int height, int stride, int textureId, float [] transformMatrix) {
244 transformMatrix =
245 RendererCommon.multiplyMatrices(transformMatrix,
263 GLES20.glUniformMatrix4fv(texMatrixLoc, 1, false, transformMatrix, 0);
269 transformMatrix[0] / width,
270 transformMatrix[1] / width);
281 transformMatrix[0] / (2.0f*width),
282 transformMatrix[1] / (2.0f*width));
443 int width, int height, int stride, int textureId, float [] transformMatrix) {
    [all...]
VideoCapturerAndroid.java 698 int oesTextureId, float[] transformMatrix, long timestampNs) {
715 transformMatrix =
716 RendererCommon.multiplyMatrices(transformMatrix, RendererCommon.horizontalFlipMatrix());
720 transformMatrix, rotation, timestampNs);
737 int width, int height, int oesTextureId, float[] transformMatrix, int rotation,
769 int width, int height, int oesTextureId, float[] transformMatrix, int rotation,
771 nativeOnTextureFrameCaptured(nativeCapturer, width, height, oesTextureId, transformMatrix,
785 int oesTextureId, float[] transformMatrix, int rotation, long timestamp);
  /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/LegacyCamera/src/com/android/camera/panorama/
MosaicRendererSurfaceViewRenderer.java 72 public void preprocess(float[] transformMatrix) {
73 MosaicRenderer.preprocess(transformMatrix);
MosaicRendererSurfaceView.java 339 public void preprocess(final float[] transformMatrix) {
344 mRenderer.preprocess(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/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);
  /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);
GlRectDrawerTest.java 291 drawer.drawOes(listener.oesTextureId, listener.transformMatrix, 0, 0, WIDTH, HEIGHT);
VideoCapturerAndroidTestFixtures.java 135 int width, int height, int oesTextureId, float[] transformMatrix, int rotation,
  /frameworks/base/libs/hwui/
Program.cpp 154 const mat4& transformMatrix, bool offset) {
172 mat4 t(transformMatrix);
Program.h 389 const mat4& transformMatrix, bool offset = false);
  /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...]
  /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,
  /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/camera/src/android/hardware/camera2/cts/testcases/
Camera2MultiViewTestCase.java 181 Matrix transformMatrix = textureView.getTransform(null);
191 transformMatrix.setRectToRect(viewRect, bufRect, Matrix.ScaleToFit.FILL);
194 transformMatrix.postRotate((360 - rotationDegrees) % 360, centerX, centerY);
204 transformMatrix.postScale(scale, scale, centerX, centerY);
220 handler.post(new TransformUpdater(textureView, transformMatrix));
  /hardware/interfaces/graphics/bufferqueue/1.0/
IGraphicBufferProducer.hal 689 * transformMatrix is meaningless if buffer.nativeHandle is null.
696 float[16] transformMatrix
  /frameworks/base/core/jni/
android_view_RenderNode.cpp 375 const SkMatrix* transformMatrix = renderNode->stagingProperties().getTransformMatrix();
377 if (transformMatrix) {
378 *outMatrix = *transformMatrix;
  /frameworks/native/libs/gui/bufferqueue/1.0/
H2BGraphicBufferProducer.cpp     [all...]
  /packages/apps/Camera2/src/com/android/camera/
CaptureModule.java     [all...]
  /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 407 milliseconds