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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/cc/layers/
video_frame_provider_client_impl.h 11 #include "ui/gfx/transform.h"
35 const gfx::Transform& stream_texture_matrix() const {
56 gfx::Transform stream_texture_matrix_;
  /external/chromium_org/content/public/browser/android/
synchronous_compositor.h 18 class Transform;
72 // then transformed through |transform|, and finally clipped to |view_size|
76 const gfx::Transform& transform,
81 // "On demand" SW draw, into the supplied canvas (observing the transform
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/
gen6_clip_state.c 50 if (!ctx->Transform.DepthClamp)
67 userclip = ctx->Transform.ClipPlanesEnabled;
  /external/chromium_org/ui/compositor/test/
test_utils.cc 9 #include "ui/gfx/transform.h"
14 void CheckApproximatelyEqual(const gfx::Transform& lhs,
15 const gfx::Transform& rhs) {
  /external/mesa3d/src/mesa/drivers/dri/i965/
gen6_clip_state.c 50 if (!ctx->Transform.DepthClamp)
67 userclip = ctx->Transform.ClipPlanesEnabled;
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
matrix.c 152 if (ctx->Transform.MatrixMode == mode && mode != GL_TEXTURE)
227 ctx->Transform.MatrixMode = mode;
249 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
252 if (ctx->Transform.MatrixMode == GL_TEXTURE) {
259 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
289 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
292 if (ctx->Transform.MatrixMode == GL_TEXTURE) {
299 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
568 * date across changes to the __struct gl_contextRec::Transform attributes.
579 if (ctx->Transform.ClipPlanesEnabled)
    [all...]
  /external/mesa3d/src/mesa/main/
matrix.c 152 if (ctx->Transform.MatrixMode == mode && mode != GL_TEXTURE)
227 ctx->Transform.MatrixMode = mode;
249 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
252 if (ctx->Transform.MatrixMode == GL_TEXTURE) {
259 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
289 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
292 if (ctx->Transform.MatrixMode == GL_TEXTURE) {
299 _mesa_lookup_enum_by_nr(ctx->Transform.MatrixMode));
568 * date across changes to the __struct gl_contextRec::Transform attributes.
579 if (ctx->Transform.ClipPlanesEnabled)
    [all...]
  /external/chromium_org/cc/animation/
animation_events.h 13 #include "ui/gfx/transform.h"
33 gfx::Transform transform; member in struct:cc::AnimationEvent
transform_operations.cc 31 gfx::Transform TransformOperations::Apply() const {
32 gfx::Transform to_return;
38 gfx::Transform TransformOperations::Blend(const TransformOperations& from,
40 gfx::Transform to_return;
100 gfx::Transform dummy;
163 void TransformOperations::AppendMatrix(const gfx::Transform& matrix) {
185 gfx::Transform* result) const {
196 gfx::Transform blended;
226 gfx::Transform transform = Apply() local
    [all...]
  /external/chromium_org/media/base/
channel_mixer.h 20 // matrix is built upon construction and used during each Transform() call. The
22 // to list of input channels. The transform renders all of the output channels,
32 void Transform(const AudioBus* input, AudioBus* output);
  /external/chromium_org/cc/base/
math_util.h 18 #include "ui/gfx/transform.h"
26 class Transform;
94 // Background: Existing transform code does not do the right thing in
98 // the transform, before dividing-by-w to convert to cartesian coordinates.
102 static gfx::Rect MapClippedRect(const gfx::Transform& transform,
104 static gfx::RectF MapClippedRect(const gfx::Transform& transform,
106 static gfx::RectF ProjectClippedRect(const gfx::Transform& transform,
    [all...]
  /external/chromium_org/content/browser/android/in_process/
synchronous_compositor_output_surface.h 15 #include "ui/gfx/transform.h"
71 const gfx::Transform& transform,
85 void InvokeComposite(const gfx::Transform& transform,
97 gfx::Transform cached_hw_transform_;
  /external/chromium_org/ui/aura/test/
test_screen.h 15 class Transform;
38 gfx::Transform GetRotationTransform() const;
39 gfx::Transform GetUIScaleTransform() const;
  /external/jmonkeyengine/engine/src/bullet-common/com/jme3/bullet/util/
CollisionShapeFactory.java 38 import com.jme3.math.Transform;
53 * returns the correct transform for a collisionshape in relation
59 private static Transform getTransform(Spatial spat, Spatial parent) {
60 Transform shapeTransform = new Transform();
66 //real parent -> only apply scale, not transform
67 Transform trans = new Transform();
89 Transform trans = getTransform(spatial, realRootNode);
101 Transform trans = getTransform(spatial, realRootNode)
    [all...]
  /external/chromium_org/ui/gfx/
interpolated_transform_unittest.cc 13 void CheckApproximatelyEqual(const gfx::Transform& lhs,
14 const gfx::Transform& rhs) {
30 gfx::Transform rotation;
32 gfx::Transform interpolated = interpolated_rotation.Interpolate(i / 100.0f);
46 gfx::Transform scale;
48 gfx::Transform interpolated = interpolated_scale.Interpolate(i / 100.0f);
63 gfx::Transform xform;
65 gfx::Transform interpolated = interpolated_xform.Interpolate(i / 100.0f);
79 gfx::Transform result = interpolated_xform.Interpolate(0.0f);
80 CheckApproximatelyEqual(gfx::Transform(), result)
    [all...]
transform_unittest.cc 8 #include "ui/gfx/transform.h"
28 #define EXPECT_ROW1_EQ(a, b, c, d, transform) \
29 EXPECT_FLOAT_EQ((a), (transform).matrix().get(0, 0)); \
30 EXPECT_FLOAT_EQ((b), (transform).matrix().get(0, 1)); \
31 EXPECT_FLOAT_EQ((c), (transform).matrix().get(0, 2)); \
32 EXPECT_FLOAT_EQ((d), (transform).matrix().get(0, 3));
34 #define EXPECT_ROW2_EQ(a, b, c, d, transform) \
35 EXPECT_FLOAT_EQ((a), (transform).matrix().get(1, 0)); \
36 EXPECT_FLOAT_EQ((b), (transform).matrix().get(1, 1)); \
37 EXPECT_FLOAT_EQ((c), (transform).matrix().get(1, 2));
1303 gfx::Transform transform; local
1329 gfx::Transform transform; local
1410 Transform transform; local
2453 Transform transform; local
2604 Transform transform; local
    [all...]
  /external/chromium_org/cc/test/
geometry_test_utils.h 9 class Transform;
83 void ExpectTransformationMatrixEq(const gfx::Transform& expected,
84 const gfx::Transform& actual);
93 // the gfx::Transform::GetInverse() API.
94 gfx::Transform Inverse(const gfx::Transform& transform);
animation_test_common.h 43 virtual gfx::Transform GetValue(double time) const OVERRIDE;
77 virtual void OnTransformAnimated(const gfx::Transform& transform) OVERRIDE;
84 const gfx::Transform& transform() const { return transform_; } function in class:cc::FakeLayerAnimationValueObserver
94 gfx::Transform transform_;
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/collision/shapes/
CompoundCollisionShape.java 35 import com.bulletphysics.linearmath.Transform;
70 Transform transA = new Transform(Converter.convert(new Matrix3f()));
85 Transform transA = new Transform(Converter.convert(rotation));
96 Transform transA = new Transform(Converter.convert(rotation));
  /external/chromium_org/ui/compositor/
layer.h 29 #include "ui/gfx/transform.h"
52 // Layer manages a texture, transform and a set of child Layers. Any View that
126 // The transform, relative to the parent.
127 void SetTransform(const gfx::Transform& transform);
128 gfx::Transform transform() const;
130 // Return the target transform if animator is running, or the current
131 // transform otherwise.
132 gfx::Transform GetTargetTransform() const
    [all...]
  /external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/
SixDofJoint.java 35 import com.bulletphysics.linearmath.Transform;
82 Transform transA = new Transform(Converter.convert(rotA));
86 Transform transB = new Transform(Converter.convert(rotB));
102 Transform transA = new Transform(Converter.convert(new Matrix3f()));
105 Transform transB = new Transform(Converter.convert(new Matrix3f()));
164 Transform transA = new Transform(Converter.convert(new Matrix3f()))
    [all...]
  /external/chromium_org/cc/quads/
render_pass_unittest.cc 16 #include "ui/gfx/transform.h"
29 gfx::Transform transform_to_root_target;
68 gfx::Transform transform_to_root =
69 gfx::Transform(1.0, 0.5, 0.5, -0.5, -1.0, 0.0);
83 shared_state->SetAll(gfx::Transform(),
120 gfx::Transform transform_to_root =
121 gfx::Transform(1.0, 0.5, 0.5, -0.5, -1.0, 0.0);
134 shared_state1->SetAll(gfx::Transform(),
157 shared_state2->SetAll(gfx::Transform(),
181 gfx::Transform contrib_transform_to_root
    [all...]
  /external/eigen/Eigen/src/Geometry/
Scaling.h 26 * but rather to make easier the constructions and updates of Transform objects.
30 * \sa Scaling(), class DiagonalMatrix, MatrixBase::asDiagonal(), class Translation, class Transform
59 inline Transform<Scalar,Dim,Affine> operator* (const Translation<Scalar,Dim>& t) const;
63 inline Transform<Scalar,Dim,(int(Mode)==int(Isometry)?Affine:Mode)> operator* (const Transform<Scalar,Dim, Mode, Options>& t) const
65 Transform<Scalar,Dim,(int(Mode)==int(Isometry)?Affine:Mode)> res = t;
153 inline Transform<Scalar,Dim,Affine>
156 Transform<Scalar,Dim,Affine> res;
  /external/chromium_org/ash/wm/overview/
scoped_transform_overview_window.cc 41 const gfx::Transform& transform,
45 window->SetTransform(transform);
47 window->SetTransform(transform);
51 gfx::Transform TranslateTransformOrigin(const gfx::Vector2d& new_origin,
52 const gfx::Transform& transform) {
53 gfx::Transform result;
55 result.PreconcatTransform(transform);
62 const gfx::Transform& transform
102 gfx::Transform transform; local
182 gfx::Transform transform; local
    [all...]
  /external/chromium_org/ui/views/controls/
slide_out_view.cc 9 #include "ui/gfx/transform.h"
51 gfx::Transform transform; local
52 transform.Translate(gesture_scroll_amount_, 0.0);
53 layer()->SetTransform(transform);
81 layer()->SetTransform(gfx::Transform());
98 gfx::Transform transform; local
99 transform.Translate(direction == SLIDE_LEFT ? -width() : width(), 0.0);
100 layer()->SetTransform(transform);
    [all...]

Completed in 580 milliseconds

1 23 4 5 6 7 8 91011>>