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

1234

/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/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;
114 vec2 transform(const vec2& v) const;
115 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 DLayerBase.cpp83 mCurrentState.transform.set(0, 0);
115 if (mCurrentState.transform.tx() == x && mCurrentState.transform.ty() == y)
118 mCurrentState.transform.set(x, y);
148 mCurrentState.transform.set(
226 const uint8_t type = temp.transform.getType();
227 mNeedsFiltering = (!temp.transform.preserveRects() ||
239 const Transform tr(hw->getTransform() * s.transform);
246 tr.transform(mesh->mVertices[0], win.left, win.top);
247 tr.transform(mes
[all...]
/frameworks/base/libs/hwui/
H A DSnapshot.cpp31 transform = &mTransformRoot;
49 mTransformRoot.load(*s->transform);
50 transform = &mTransformRoot;
52 transform = s->transform;
123 transform->mapRect(r);
182 return transform->isPerspective();
187 inverse.loadInverse(*transform);
205 transform = &mTransformRoot;
206 transform
[all...]
H A DOpenGLRenderer.cpp353 memset(info.transform, 0, sizeof(float) * 16);
403 getSnapshot()->transform->copyTo(&info.transform[0]);
696 mSnapshot->transform->mapRect(bounds);
711 inverse.loadInverse(*mSnapshot->transform);
867 dirtyLayer(rect.left, rect.top, rect.right, rect.bottom, *previous->transform);
921 if (mSnapshot->transform->isPureTranslate() &&
924 const float x = (int) floorf(rect.left + mSnapshot->transform->getTranslateX() + 0.5f);
925 const float y = (int) floorf(rect.top + mSnapshot->transform->getTranslateY() + 0.5f);
949 bool simpleTransform = mSnapshot->transform
1088 dirtyLayer(const float left, const float top, const float right, const float bottom, const mat4 transform) argument
1198 SkMatrix transform; local
1524 setupDrawTextureTransformUniforms(mat4& transform) argument
2790 mat4* transform = NULL; local
[all...]
H A DLayerRenderer.h59 bool isOpaque, GLenum renderTarget, float* transform);
H A DPathRenderer.h71 const mat4 *transform, VertexBuffer& vertexBuffer);
H A DSnapshot.h103 * transformed by the inverse transform matrix.
113 * Resets the current transform to a pure 3D translation.
124 * Indicates whether the current transform has perspective components.
186 mat4* transform; member in class:android::uirenderer::Snapshot
/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 DISurfaceTexture.h86 // and height of the window and current transform applied to buffers,
92 const Rect& crop, int scalingMode, uint32_t transform,
95 transform(transform), fence(fence) { }
102 *outTransform = transform;
118 uint32_t transform; member in struct:android::ISurfaceTexture::QueueBufferInput
175 // and height of the window and current transform applied to buffers,
91 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.java389 // parameters are correct (width, height, transform, etc.)
454 * <p>Sets the transform to associate with this texture view.
455 * The specified transform applies to the underlying surface
463 * @param transform The transform to apply to the content of
470 public void setTransform(Matrix transform) { argument
471 mMatrix.set(transform);
477 * Returns the transform associated with this texture view.
479 * @param transform The {@link Matrix} in which to copy the current
480 * transform
487 getTransform(Matrix transform) argument
[all...]
/frameworks/base/cmds/am/
H A DAndroid.mk13 $(transform-prebuilt-to-target)
/frameworks/base/cmds/content/
H A DAndroid.mk15 $(transform-prebuilt-to-target)

Completed in 2602 milliseconds

1234