Home
last modified time | relevance | path

Searched refs:rotation (Results 1 – 25 of 321) sorted by relevance

12345678910>>...13

/external/deqp/scripts/
Dbuild_android_mustpass.py61 rotation = "unspecified",
68 rotation = "unspecified",
78 rotation = "unspecified",
85 rotation = "unspecified",
96 rotation = "unspecified",
104 rotation = "unspecified",
112 rotation = "unspecified",
118 rotation = "0",
123 rotation = "90",
128 rotation = "180",
[all …]
/external/deqp/external/openglcts/scripts/
Dbuild_mustpass.py102 rotation = "unspecified",
111 rotation = "unspecified",
119 rotation = "0",
126 rotation = "90",
133 rotation = "180",
140 rotation = "270",
149 rotation = "unspecified",
159 rotation = "unspecified",
170 rotation = "unspecified",
177 rotation = "0",
[all …]
/external/webrtc/talk/app/webrtc/
Dandroidvideocapturer.cc59 int rotation, in UpdateCapturedFrame() argument
61 RTC_DCHECK(rotation == 0 || rotation == 90 || rotation == 180 || in UpdateCapturedFrame()
62 rotation == 270); in UpdateCapturedFrame()
67 captured_frame_.rotation = static_cast<webrtc::VideoRotation>(rotation); in UpdateCapturedFrame()
91 captured_frame->time_stamp, captured_frame->rotation)); in CreateAliasedFrame()
111 apply_rotation_ ? input_frame->rotation : in CreateAliasedFrame()
115 apply_rotation_ ? webrtc::kVideoRotation_0 : input_frame->rotation); in CreateAliasedFrame()
225 int rotation, in OnIncomingFrame() argument
228 frame_factory_->UpdateCapturedFrame(buffer, rotation, time_stamp); in OnIncomingFrame()
/external/webrtc/webrtc/modules/rtp_rtcp/include/
Drtp_cvo.h21 inline uint8_t ConvertVideoRotationToCVOByte(VideoRotation rotation) { in ConvertVideoRotationToCVOByte() argument
22 switch (rotation) { in ConvertVideoRotationToCVOByte()
36 inline VideoRotation ConvertCVOByteToVideoRotation(uint8_t rotation) { in ConvertCVOByteToVideoRotation() argument
37 switch (rotation) { in ConvertCVOByteToVideoRotation()
/external/webrtc/webrtc/
Dvideo_frame.h28 VideoRotation rotation);
65 VideoRotation rotation);
74 VideoRotation rotation);
129 VideoRotation rotation() const { return rotation_; } in rotation() function
130 void set_rotation(VideoRotation rotation) { in set_rotation() argument
131 rotation_ = rotation; in set_rotation()
/external/webrtc/talk/media/webrtc/
Dwebrtcvideoframe.cc51 webrtc::VideoRotation rotation) in WebRtcVideoFrame() argument
56 rotation_(rotation) { in WebRtcVideoFrame()
71 webrtc::VideoRotation rotation) { in Init() argument
73 pixel_height, time_stamp_ns, rotation, in Init()
82 frame->rotation, apply_rotation); in Init()
202 webrtc::VideoRotation rotation, in Reset() argument
215 if (apply_rotation && (rotation == 90 || rotation == 270)) { in Reset()
222 rotation_ = apply_rotation ? webrtc::kVideoRotation_0 : rotation; in Reset()
239 apply_rotation ? rotation : webrtc::kVideoRotation_0), in Reset()
Dwebrtcvideoframe.h47 webrtc::VideoRotation rotation);
65 webrtc::VideoRotation rotation);
86 webrtc::VideoRotation rotation,
126 void SetRotation(webrtc::VideoRotation rotation) override { in SetRotation() argument
127 rotation_ = rotation; in SetRotation()
/external/webrtc/talk/app/webrtc/java/jni/
Dnative_handle_impl.cc42 void RotateMatrix(float a[16], webrtc::VideoRotation rotation) { in RotateMatrix() argument
46 switch (rotation) { in RotateMatrix()
167 webrtc::VideoRotation rotation) { in ScaleAndRotate() argument
169 rotation == webrtc::kVideoRotation_0) { in ScaleAndRotate()
172 int rotated_width = (rotation % 180 == 0) ? dst_widht : dst_height; in ScaleAndRotate()
173 int rotated_height = (rotation % 180 == 0) ? dst_height : dst_widht; in ScaleAndRotate()
182 RotateMatrix(buffer->native_handle_.sampling_matrix, rotation); in ScaleAndRotate()
Dandroidvideocapturer_jni.cc156 int rotation, in OnMemoryBufferFrame() argument
172 buffer, rotation, timestamp_ns); in OnMemoryBufferFrame()
177 int rotation, in OnTextureFrame() argument
185 buffer, rotation, timestamp_ns); in OnTextureFrame()
201 jint width, jint height, jint rotation, jlong timestamp) { in JOW()
205 ->OnMemoryBufferFrame(bytes, length, width, height, rotation, timestamp); in JOW()
/external/webrtc/talk/media/base/
Dvideocommon.cc159 int rotation, in ComputeCrop() argument
162 if (rotation == 90 || rotation == 270) { in ComputeCrop()
171 ASSERT(rotation == 0 || rotation == 90 || rotation == 180 || rotation == 270); in ComputeCrop()
/external/webrtc/webrtc/modules/video_capture/
Dvideo_capture_impl.cc47 VideoRotation* rotation) { in RotationFromDegrees() argument
50 *rotation = kVideoRotation_0; in RotationFromDegrees()
53 *rotation = kVideoRotation_90; in RotationFromDegrees()
56 *rotation = kVideoRotation_180; in RotationFromDegrees()
59 *rotation = kVideoRotation_270; in RotationFromDegrees()
67 int32_t VideoCaptureImpl::RotationInDegrees(VideoRotation rotation, in RotationInDegrees() argument
69 switch (rotation) { in RotationInDegrees()
323 int32_t VideoCaptureImpl::SetCaptureRotation(VideoRotation rotation) { in SetCaptureRotation() argument
326 _rotateFrame = rotation; in SetCaptureRotation()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowViewRenderNode.java19 private float rotation; field in ShadowViewRenderNode
84 public boolean setRotation(float rotation) { in setRotation() argument
85 this.rotation = rotation; in setRotation()
91 return rotation; in getRotation()
DShadowRenderNode.java20 private float rotation; field in ShadowRenderNode
85 public boolean setRotation(float rotation) { in setRotation() argument
86 this.rotation = rotation; in setRotation()
92 return rotation; in getRotation()
DShadowDisplay.java56 private Integer rotation; field in ShadowDisplay
359 public void setRotation(int rotation) { in setRotation() argument
361 this.rotation = rotation; in setRotation()
364 di -> di.rotation = rotation); in setRotation()
413 rotation = configuration.orientation == Configuration.ORIENTATION_PORTRAIT in configureForJBOnly()
/external/webrtc/talk/app/webrtc/java/android/org/webrtc/
DVideoCapturerAndroid.java663 int rotation = getDeviceOrientation(); in getFrameOrientation() local
665 rotation = 360 - rotation; in getFrameOrientation()
667 return (info.orientation + rotation) % 360; in getFrameOrientation()
711 int rotation = getFrameOrientation(); in onTextureFrameAvailable() local
720 transformMatrix, rotation, timestampNs); in onTextureFrameAvailable()
731 abstract void onByteBufferFrameCaptured(byte[] data, int width, int height, int rotation, in onByteBufferFrameCaptured() argument
737 int width, int height, int oesTextureId, float[] transformMatrix, int rotation, in onTextureFrameCaptured() argument
762 int rotation, long timeStamp) { in onByteBufferFrameCaptured() argument
763 nativeOnByteBufferFrameCaptured(nativeCapturer, data, data.length, width, height, rotation, in onByteBufferFrameCaptured()
769 int width, int height, int oesTextureId, float[] transformMatrix, int rotation, in onTextureFrameCaptured() argument
[all …]
/external/skqp/experimental/canvaskit/htmlcanvas/
Dpath2d.js60 function ellipse(skpath, x, y, radiusX, radiusY, rotation, argument
62 if (!allAreFinite([x, y, radiusX, radiusY, rotation, startAngle, endAngle])) {
97 if (!rotation) {
101 var rotated = CanvasKit.SkMatrix.rotated(rotation, x, y);
102 var rotatedInvert = CanvasKit.SkMatrix.rotated(-rotation, x, y);
185 this.ellipse = function(x, y, radiusX, radiusY, rotation, argument
187 ellipse(this._path, x, y, radiusX, radiusY, rotation,
/external/skia/modules/canvaskit/htmlcanvas/
Dpath2d.js60 function ellipse(skpath, x, y, radiusX, radiusY, rotation, argument
62 if (!allAreFinite([x, y, radiusX, radiusY, rotation, startAngle, endAngle])) {
97 if (!rotation) {
101 var rotated = CanvasKit.SkMatrix.rotated(rotation, x, y);
102 var rotatedInvert = CanvasKit.SkMatrix.rotated(-rotation, x, y);
185 this.ellipse = function(x, y, radiusX, radiusY, rotation, argument
187 ellipse(this._path, x, y, radiusX, radiusY, rotation,
/external/skia/platform_tools/android/apps/skar_java/src/main/java/com/google/skar/
DCanvasMatrixUtil.java79 float[] rotation = new float[16]; in createXYtoXZRotationMatrix() local
80 android.opengl.Matrix.setIdentityM(rotation, 0); in createXYtoXZRotationMatrix()
81 android.opengl.Matrix.rotateM(rotation, 0, 90, 1, 0, 0); in createXYtoXZRotationMatrix()
82 return rotation; in createXYtoXZRotationMatrix()
/external/skqp/platform_tools/android/apps/skar_java/src/main/java/com/google/skar/
DCanvasMatrixUtil.java79 float[] rotation = new float[16]; in createXYtoXZRotationMatrix() local
80 android.opengl.Matrix.setIdentityM(rotation, 0); in createXYtoXZRotationMatrix()
81 android.opengl.Matrix.rotateM(rotation, 0, 90, 1, 0, 0); in createXYtoXZRotationMatrix()
82 return rotation; in createXYtoXZRotationMatrix()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/internal/
DDisplayConfig.java163 public int rotation; field in DisplayConfig
290 rotation = other.rotation; in DisplayConfig()
346 && rotation == other.rotation in equals()
387 rotation = other.rotation; in copyFrom()
431 other.rotation = rotation; in copyTo()
510 sb.append(rotation); in toString()
/external/webrtc/webrtc/common_video/
Dvideo_frame.cc51 VideoRotation rotation) in VideoFrame() argument
56 rotation_(rotation) { in VideoFrame()
112 VideoRotation rotation) { in CreateFrame() argument
121 rotation_ = rotation; in CreateFrame()
128 VideoRotation rotation) { in CreateFrame() argument
136 stride_uv, stride_uv, rotation); in CreateFrame()
/external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
Dscan.css25 -webkit-animation: rotation .6s infinite linear;
26 animation: rotation .6s infinite linear;
39 @-webkit-keyframes rotation {
/external/autotest/server/site_tests/platform_RotationFps/
Dcontrol9 PURPOSE = "Remotely controlled screen rotation test."
10 CRITERIA = "This test will fail if slow fps while changing screen rotation."
20 This test remotely tests screen rotation function and benchmarks the fps.
/external/autotest/client/site_tests/display_InternalDisplayRotation/
Ddisplay_InternalDisplayRotation.py49 rotation = self.display_facade.get_display_rotation(
51 logging.info("Internal display rotation is set to %s", rotation)
52 if rotation != angle:
/external/libyuv/files/source/
Dconvert_to_argb.cc42 enum RotationMode rotation, in ConvertToARGB() argument
58 (rotation && format != FOURCC_ARGB) || crop_argb == sample; in ConvertToARGB()
105 if (!need_buf && !rotation) { in ConvertToARGB()
255 crop_width, abs_crop_height, rotation); in ConvertToARGB()
258 } else if (rotation) { in ConvertToARGB()
261 inv_crop_height, rotation); in ConvertToARGB()

12345678910>>...13