Searched refs:transform (Results 1 - 25 of 100) sorted by relevance

1234

/frameworks/av/services/camera/libcameraservice/camera3/
H A DCamera3OutputStreamInterface.h33 * Set the transform on the output stream; one of the
36 virtual status_t setTransform(int transform) = 0;
H A DCamera3OutputStream.h60 * Set the transform on the output stream; one of the
63 status_t setTransform(int transform);
83 virtual status_t setTransformLocked(int transform);
H A DCamera3OutputStream.cpp218 status_t Camera3OutputStream::setTransform(int transform) { argument
221 return setTransformLocked(transform);
224 status_t Camera3OutputStream::setTransformLocked(int transform) { argument
231 mTransform = transform;
234 transform);
236 ALOGE("%s: Unable to configure stream transform to %x: %s (%d)",
237 __FUNCTION__, transform, strerror(-res), res);
323 ALOGE("%s: Unable to configure stream transform to %x: %s (%d)",
H A DCamera3ZslStream.h70 status_t setTransform(int transform);
/frameworks/native/services/surfaceflinger/tests/transform/
H A DAndroid.mk13 LOCAL_MODULE:= test-transform
/frameworks/base/include/private/hwui/
H A DDrawGlInfo.h41 // Input: current transform matrix, in OpenGL format
42 float transform[16]; member in struct:android::uirenderer::DrawGlInfo
/frameworks/base/cmds/bmgr/
H A DAndroid.mk14 $(transform-prebuilt-to-target)
/frameworks/base/cmds/ime/
H A DAndroid.mk14 $(transform-prebuilt-to-target)
/frameworks/base/cmds/input/
H A DAndroid.mk13 $(transform-prebuilt-to-target)
/frameworks/base/cmds/pm/
H A DAndroid.mk14 $(transform-prebuilt-to-target)
/frameworks/base/cmds/svc/
H A DAndroid.mk14 $(transform-prebuilt-to-target)
/frameworks/compile/libbcc/
H A Dlibbcc-gen-config-from-mk.mk27 $(transform-generated-source)
H A Dlibbcc-gen-build-info.mk55 $(transform-generated-source)
/frameworks/base/libs/hwui/
H A DSnapshot.cpp33 transform = &mTransformRoot;
49 mTransformRoot.load(*s->transform);
50 transform = &mTransformRoot;
52 transform = s->transform;
116 transform->mapRect(r);
165 return transform->isPerspective();
170 inverse.loadInverse(*transform);
192 transform = &mTransformRoot;
193 transform
[all...]
H A DPathTessellator.h96 const mat4 *transform, VertexBuffer& vertexBuffer);
99 const mat4* transform, SkRect& bounds, VertexBuffer& vertexBuffer);
H A DLayerRenderer.h59 bool isOpaque, GLenum renderTarget, float* transform);
/frameworks/native/services/surfaceflinger/
H A DTransform.h60 // query the transform
70 // modify the transform
76 // transform data
78 void transform(float* point, int x, int y) const;
79 Region transform(const Region& reg) const;
80 Rect transform(const Rect& bounds) const;
116 vec2 transform(const vec2& v) const;
117 vec3 transform(const vec3& v) const;
H A DTransform.cpp176 Transform::vec2 Transform::transform(const vec2& v) const { function in class:android::Transform
184 Transform::vec3 Transform::transform(const vec3& v) const { function in class:android::Transform
193 void Transform::transform(float* point, int x, int y) const function in class:android::Transform
196 v = transform(v);
203 return transform( Rect(w, h) );
206 Rect Transform::transform(const Rect& bounds) const function in class:android::Transform
214 lt = transform(lt);
215 rt = transform(rt);
216 lb = transform(lb);
217 rb = transform(r
227 Region Transform::transform(const Region& reg) const function in class:android::Transform
[all...]
H A DLayer.cpp101 mCurrentState.transform.set(0, 0);
304 Rect activeCrop(s.transform.transform(s.active.crop));
306 activeCrop = s.transform.inverse().transform(activeCrop);
314 // which means using the inverse of the current transform set on the
325 const Rect winCrop = activeCrop.transform(
359 // this gives us only the "orientation" component of the transform
367 // apply the layer's transform, followed by the display's global transform
[all...]
/frameworks/av/media/libstagefright/colorconversion/
H A DSoftwareRenderer.cpp115 uint32_t transform; local
117 case 0: transform = 0; break;
118 case 90: transform = HAL_TRANSFORM_ROT_90; break;
119 case 180: transform = HAL_TRANSFORM_ROT_180; break;
120 case 270: transform = HAL_TRANSFORM_ROT_270; break;
121 default: transform = 0; break;
124 if (transform) {
126 mNativeWindow.get(), transform));
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DTransformParam.java45 mData.transform = mTransform.getRSData().getAllocation();
71 mData.transform = mTransform.getRSData().getAllocation();
/frameworks/native/include/gui/
H A DIGraphicBufferProducer.h100 // and height of the window and current transform applied to buffers,
106 const Rect& crop, int scalingMode, uint32_t transform,
109 transform(transform), fence(fence) { }
116 *outTransform = transform;
132 uint32_t transform; member in struct:android::IGraphicBufferProducer::QueueBufferInput
189 // and height of the window and current transform applied to buffers,
105 QueueBufferInput(int64_t timestamp, const Rect& crop, int scalingMode, uint32_t transform, sp<Fence> fence) argument
H A DCpuConsumer.h52 uint32_t transform; member in struct:android::CpuConsumer::LockedBuffer
/frameworks/native/opengl/tests/hwc/
H A DhwcRects.cpp40 * transform: none | fliph | flipv | rot90 | rot180 | rot270
51 * YV12 [50, 80, 200, 300] transform: none \
146 Rectangle() : format(defaultFormat), transform(defaultTransform),
153 uint32_t transform; member in class:Rectangle
322 layer->transform = it->transform;
419 if (attrName == "transform:") { // Transform
424 rect.transform = 0;
426 rect.transform = HWC_TRANSFORM_FLIP_H;
428 rect.transform
[all...]
/frameworks/base/core/java/android/view/
H A DTextureView.java397 // parameters are correct (width, height, transform, etc.)
462 * <p>Sets the transform to associate with this texture view.
463 * The specified transform applies to the underlying surface
471 * @param transform The transform to apply to the content of
478 public void setTransform(Matrix transform) { argument
479 mMatrix.set(transform);
485 * Returns the transform associated with this texture view.
487 * @param transform The {@link Matrix} in which to copy the current
488 * transform
495 getTransform(Matrix transform) argument
[all...]

Completed in 4683 milliseconds

1234