HomeSort by relevance Sort by last modified time
    Searched refs:Transform (Results 126 - 150 of 433) sorted by null

1 2 3 4 56 7 8 91011>>

  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
Camera.java 34 Transform mTransform;
47 public void setTransform(Transform t) {
LightBase.java 37 Transform mTransform;
45 public void setTransform(Transform t) {
  /external/chromium_org/cc/test/
render_pass_test_utils.cc 24 const gfx::Transform& root_transform) {
39 shared_state->SetAll(gfx::Transform(),
60 shared_state->SetAll(gfx::Transform(),
77 const gfx::Transform& transform) {
83 transform, rect.size(), rect, rect, false, 1, SkXfermode::kSrcOver_Mode);
99 shared_state->SetAll(gfx::Transform(),
117 gfx::Transform transform) {
124 shared_state->SetAll(transform,
    [all...]
  /external/chromium_org/cc/trees/
layer_tree_host_common.h 17 #include "ui/gfx/transform.h"
29 const gfx::Transform& transform);
36 const gfx::Transform& device_transform,
59 const gfx::Transform& device_transform;
76 const gfx::Transform& device_transform,
84 const gfx::Transform identity_transform_;
215 const gfx::Transform& device_transform,
layer_tree_host_common_unittest.cc 33 #include "ui/gfx/transform.h"
43 const gfx::Transform& transform,
44 const gfx::Transform& sublayer_transform,
49 layer->SetTransform(transform);
58 const gfx::Transform& transform,
59 const gfx::Transform& sublayer_transform,
65 transform,
74 const gfx::Transform& transform
    [all...]
quad_culler_unittest.cc 25 #include "ui/gfx/transform.h"
54 const gfx::Transform& draw_transform,
133 gfx::Transform child_transform; \
143 gfx::Transform(),
150 gfx::Transform(),
183 gfx::Transform(),
190 gfx::Transform(),
223 gfx::Transform(),
263 gfx::Transform(),
304 gfx::Transform(),
    [all...]
layer_tree_host_pixeltest_filters.cc 114 gfx::Transform background_transform;
119 gfx::Transform blur_transform;
189 gfx::Transform transform; local
190 transform.Translate(0.0, -100.0);
191 foreground->SetTransform(transform);
  /external/chromium_org/content/browser/android/in_process/
synchronous_compositor_output_surface.cc 22 #include "ui/gfx/transform.h"
158 void AdjustTransform(gfx::Transform* transform, gfx::Rect viewport) {
160 transform->matrix().postTranslate(-viewport.x(), -viewport.y(), 0);
182 const gfx::Transform& transform,
192 InvokeComposite(transform, viewport, clip, true);
207 gfx::Transform transform(gfx::Transform::kSkipInitialization)
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java 10 import com.jme3.math.Transform;
40 /** Bone's pose transform (available after calling 'buildBone' method). */
41 private Transform poseTransform = new Transform();
130 * This method computes the pose transform for the bone.
147 Transform localTransform = new Transform(bone.getLocalPosition(), bone.getLocalRotation());
194 public Transform getPoseTransform() {
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/objects/
PhysicsGhostObject.java 36 import com.bulletphysics.linearmath.Transform;
66 protected Transform tempTrans = new Transform(Converter.convert(new Matrix3f()));
67 private com.jme3.math.Transform physicsLocation = new com.jme3.math.Transform();
136 public com.jme3.math.Transform getPhysicsTransform() {
PhysicsCharacter.java 38 import com.bulletphysics.linearmath.Transform;
67 private Transform tempTrans = new Transform(Converter.convert(new Matrix3f()));
68 private com.jme3.math.Transform physicsLocation = new com.jme3.math.Transform();
  /external/chromium_org/ui/gfx/
transform_util.cc 221 Transform ComposeTransform(const SkMatrix44& perspective,
234 Transform to_return;
240 const Transform& transform) {
247 transform.TransformPoint(&point_transformed);
257 const Transform& original,
258 const Transform& snapped) {
260 Transform original_inv(Transform::kSkipInitialization);
263 DCHECK(invertible) << "Non-invertible transform, cannot snap."
278 Transform transform; local
    [all...]
  /external/chromium_org/cc/output/
gl_renderer_unittest.cc 31 #include "ui/gfx/transform.h"
342 gfx::Transform());
368 gfx::Transform());
394 gfx::Transform());
640 gfx::Transform());
686 gfx::Transform());
725 gfx::Transform());
808 gfx::Transform());
877 &render_passes_in_draw_order_, id, gfx::Rect(100, 100), gfx::Transform());
    [all...]
  /external/chromium_org/ui/views/corewm/
image_grid.cc 18 #include "ui/gfx/transform.h"
29 layer.transform().TransformRect(&bounds);
112 // the transform on each of the layers based on dimensions in pixels.
118 gfx::Transform transform; local
119 transform.Translate(left, 0);
120 ScaleWidth(center_size_in_pixels, top_layer_.get(), transform);
121 top_layer_->SetTransform(transform);
127 gfx::Transform transform; local
137 gfx::Transform transform; local
146 gfx::Transform transform; local
164 gfx::Transform transform; local
175 gfx::Transform transform; local
187 gfx::Transform transform; local
203 gfx::Transform transform; local
    [all...]
  /external/eigen/Eigen/src/Geometry/
Homogeneous.h 103 inline const internal::homogeneous_left_product_impl<Homogeneous,Transform<Scalar,Dim,Mode,Options> >
104 operator* (const Transform<Scalar,Dim,Mode,Options>& lhs, const Homogeneous& rhs)
107 return internal::homogeneous_left_product_impl<Homogeneous,Transform<Scalar,Dim,Mode,Options> >(lhs,rhs.m_matrix);
203 struct take_matrix_for_product<Transform<Scalar, Dim, Mode, Options> >
205 typedef Transform<Scalar, Dim, Mode, Options> TransformType;
211 struct take_matrix_for_product<Transform<Scalar, Dim, Projective, Options> >
213 typedef Transform<Scalar, Dim, Projective, Options> TransformType;
Translation.h 25 * but rather to make easier the constructions and updates of Transform objects.
27 * \sa class Scaling, class Transform
43 typedef Transform<Scalar,Dim,Affine> AffineTransformType;
45 typedef Transform<Scalar,Dim,Isometry> IsometryTransformType;
125 inline Transform<Scalar,Dim,Mode> operator* (const Transform<Scalar,Dim,Mode,Options>& t) const
127 Transform<Scalar,Dim,Mode> res = t;
  /external/chromium_org/cc/layers/
layer.h 36 #include "ui/gfx/transform.h"
180 void SetSublayerTransform(const gfx::Transform& sublayer_transform);
181 const gfx::Transform& sublayer_transform() const {
185 void SetTransform(const gfx::Transform& transform);
186 const gfx::Transform& transform() const { return transform_; } function in class:cc::Layer
224 const gfx::Transform& draw_transform() const {
227 const gfx::Transform& screen_space_transform() const {
556 virtual void OnTransformAnimated(const gfx::Transform& transform) OVERRIDE
    [all...]
layer_impl.h 36 #include "ui/gfx/transform.h"
86 virtual void OnTransformAnimated(const gfx::Transform& transform) OVERRIDE;
271 void SetSublayerTransform(const gfx::Transform& sublayer_transform);
272 const gfx::Transform& sublayer_transform() const {
305 const gfx::Transform& draw_transform() const {
308 const gfx::Transform& screen_space_transform() const {
453 void SetTransform(const gfx::Transform& transform);
454 const gfx::Transform& transform() const { return transform_; function in class:cc::LayerImpl
    [all...]
render_surface_unittest.cc 18 #include "ui/gfx/transform.h"
66 gfx::Transform dummy_matrix;
98 gfx::Transform origin;
160 gfx::Transform origin;
  /external/chromium_org/cc/resources/
picture_layer_tiling_unittest.cc 20 const gfx::Transform& transform,
23 gfx::Transform inverse;
24 if (!transform.GetInverse(&inverse))
472 // If a layer has a non-invertible transform, then the starting rect
501 gfx::Transform(), // last screen transform
502 gfx::Transform(), // current screen transform
517 gfx::Transform(), // last screen transfor
    [all...]
picture_layer_tiling_perftest.cc 66 const gfx::Transform& transform) {
81 transform,
82 transform,
93 const gfx::Transform& transform) {
115 transform,
116 transform,
162 gfx::Transform transform; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/tnl/
t_rasterpos.c 92 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) {
93 GLfloat dot = v[0] * ctx->Transform._ClipUserPlane[p][0]
94 + v[1] * ctx->Transform._ClipUserPlane[p][1]
95 + v[2] * ctx->Transform._ClipUserPlane[p][2]
96 + v[3] * ctx->Transform._ClipUserPlane[p][3];
387 if (!ctx->Transform.DepthClamp) {
393 if (!ctx->Transform.RasterPositionUnclipped) {
401 if (ctx->Transform.ClipPlanesEnabled && !userclip_point(ctx, clip)) {
421 if (ctx->Transform.DepthClamp) {
  /external/mesa3d/src/mesa/tnl/
t_rasterpos.c 92 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) {
93 GLfloat dot = v[0] * ctx->Transform._ClipUserPlane[p][0]
94 + v[1] * ctx->Transform._ClipUserPlane[p][1]
95 + v[2] * ctx->Transform._ClipUserPlane[p][2]
96 + v[3] * ctx->Transform._ClipUserPlane[p][3];
387 if (!ctx->Transform.DepthClamp) {
393 if (!ctx->Transform.RasterPositionUnclipped) {
401 if (ctx->Transform.ClipPlanesEnabled && !userclip_point(ctx, clip)) {
421 if (ctx->Transform.DepthClamp) {
  /external/chromium/third_party/libjingle/source/talk/base/
stringencode.h 109 // Apply any suitable string transform (including the ones above) to an STL
112 typedef size_t (*Transform)(char * buffer, size_t buflen,
114 size_t transform(std::string& value, size_t maxlen, const std::string& source,
115 Transform t);
117 // Return the result of applying transform t to source.
118 std::string s_transform(const std::string& source, Transform t);
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen6_vs_state.c 57 if (brw->vs.prog_data->nr_params == 0 && !ctx->Transform.ClipPlanesEnabled) {
79 if (ctx->Transform.ClipPlanesEnabled != 0 && !uses_clip_distance) {
82 = _mesa_logbase2(ctx->Transform.ClipPlanesEnabled) + 1;

Completed in 378 milliseconds

1 2 3 4 56 7 8 91011>>