/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/custom/ |
CustomFilterParameter.h | 50 Transform
|
CustomFilterTransformParameter.h | 60 : CustomFilterParameter(Transform, name)
|
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/ |
t_vb_normals.c | 107 GLuint transform = NORM_TRANSFORM_NO_ROT; local 110 /* need to do full (3x3) matrix transform */ 111 transform = NORM_TRANSFORM; 114 if (ctx->Transform.Normalize) { 115 store->NormalTransform = _mesa_normal_tab[transform | NORM_NORMALIZE]; 117 else if (ctx->Transform.RescaleNormals && 119 store->NormalTransform = _mesa_normal_tab[transform | NORM_RESCALE]; 122 store->NormalTransform = _mesa_normal_tab[transform]; 128 * transform normal vectors (just leave them in object coordinates) 131 if (ctx->Transform.Normalize) [all...] |
t_vb_vertex.c | 70 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { \ 72 const GLfloat a = ctx->Transform._ClipUserPlane[p][0]; \ 73 const GLfloat b = ctx->Transform._ClipUserPlane[p][1]; \ 74 const GLfloat c = ctx->Transform._ClipUserPlane[p][2]; \ 75 const GLfloat d = ctx->Transform._ClipUserPlane[p][3]; \ 126 if (ctx->Transform.DepthClamp) { 194 !ctx->Transform.DepthClamp ); 203 !ctx->Transform.DepthClamp ); 213 if (ctx->Transform.ClipPlanesEnabled) {
|
t_vb_cliptmp.h | 141 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { 142 const GLfloat a = ctx->Transform._ClipUserPlane[p][0]; 143 const GLfloat b = ctx->Transform._ClipUserPlane[p][1]; 144 const GLfloat c = ctx->Transform._ClipUserPlane[p][2]; 145 const GLfloat d = ctx->Transform._ClipUserPlane[p][3]; 230 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { 231 const GLfloat a = ctx->Transform._ClipUserPlane[p][0]; 232 const GLfloat b = ctx->Transform._ClipUserPlane[p][1]; 233 const GLfloat c = ctx->Transform._ClipUserPlane[p][2]; 234 const GLfloat d = ctx->Transform._ClipUserPlane[p][3] [all...] |
/external/mesa3d/src/mesa/tnl/ |
t_vb_normals.c | 107 GLuint transform = NORM_TRANSFORM_NO_ROT; local 110 /* need to do full (3x3) matrix transform */ 111 transform = NORM_TRANSFORM; 114 if (ctx->Transform.Normalize) { 115 store->NormalTransform = _mesa_normal_tab[transform | NORM_NORMALIZE]; 117 else if (ctx->Transform.RescaleNormals && 119 store->NormalTransform = _mesa_normal_tab[transform | NORM_RESCALE]; 122 store->NormalTransform = _mesa_normal_tab[transform]; 128 * transform normal vectors (just leave them in object coordinates) 131 if (ctx->Transform.Normalize) [all...] |
t_vb_vertex.c | 70 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { \ 72 const GLfloat a = ctx->Transform._ClipUserPlane[p][0]; \ 73 const GLfloat b = ctx->Transform._ClipUserPlane[p][1]; \ 74 const GLfloat c = ctx->Transform._ClipUserPlane[p][2]; \ 75 const GLfloat d = ctx->Transform._ClipUserPlane[p][3]; \ 126 if (ctx->Transform.DepthClamp) { 194 !ctx->Transform.DepthClamp ); 203 !ctx->Transform.DepthClamp ); 213 if (ctx->Transform.ClipPlanesEnabled) {
|
t_vb_cliptmp.h | 141 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { 142 const GLfloat a = ctx->Transform._ClipUserPlane[p][0]; 143 const GLfloat b = ctx->Transform._ClipUserPlane[p][1]; 144 const GLfloat c = ctx->Transform._ClipUserPlane[p][2]; 145 const GLfloat d = ctx->Transform._ClipUserPlane[p][3]; 230 if (ctx->Transform.ClipPlanesEnabled & (1 << p)) { 231 const GLfloat a = ctx->Transform._ClipUserPlane[p][0]; 232 const GLfloat b = ctx->Transform._ClipUserPlane[p][1]; 233 const GLfloat c = ctx->Transform._ClipUserPlane[p][2]; 234 const GLfloat d = ctx->Transform._ClipUserPlane[p][3] [all...] |
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/ |
MatrixTransform.java | 28 public class MatrixTransform extends Transform {
|
TransformParam.java | 35 Transform mTransform; 42 public void setTransform(Transform t) { 45 mData.transform = mTransform.getRSData().getAllocation(); 71 mData.transform = mTransform.getRSData().getAllocation();
|
/frameworks/native/services/surfaceflinger/ |
DisplayDevice.cpp | 127 // initialize the display orientation transform. 313 const Transform& planeTransform(mGlobalTransform); 314 dirty = planeTransform.transform(this->dirtyRegion); 348 uint32_t transform = 0; local 351 transform = Transform::ROT_0; 354 transform = Transform::ROT_90; 357 transform = Transform::ROT_180 [all...] |
/external/chromium_org/cc/animation/ |
animation_curve.h | 11 #include "ui/gfx/transform.h" 29 enum CurveType { Color, Float, Transform, Filter, ScrollOffset }; 70 virtual gfx::Transform GetValue(double t) const = 0;
|
/external/chromium_org/cc/base/ |
float_quad_unittest.cc | 9 #include "ui/gfx/transform.h" 17 gfx::Transform rectilinear_trans[kNumRectilinear]; 40 gfx::Transform non_rectilinear_trans[kNumNonRectilinear];
|
/external/chromium_org/cc/layers/ |
video_frame_provider_client_impl.cc | 34 stream_texture_matrix_ = gfx::Transform( 81 stream_texture_matrix_ = gfx::Transform(
|
/external/chromium_org/cc/quads/ |
stream_video_draw_quad.cc | 23 const gfx::Transform& matrix) { 38 const gfx::Transform& matrix) {
|
/external/chromium_org/content/browser/renderer_host/input/ |
gesture_event_filter.h | 17 #include "ui/gfx/transform.h" 155 // Returns the transform matrix corresponding to the gesture event. 158 gfx::Transform GetTransformForEvent( 179 // Transform that holds the combined transform matrix for the current 181 gfx::Transform combined_scroll_pinch_;
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
gen7_clip_state.c | 77 if (!ctx->Transform.DepthClamp) 94 userclip = ctx->Transform.ClipPlanesEnabled;
|
/external/chromium_org/ui/compositor/test/ |
test_layer_animation_delegate.cc | 35 const gfx::Transform& transform) { 36 transform_ = transform; 66 gfx::Transform TestLayerAnimationDelegate::GetTransformForAnimation() const {
|
/external/chromium_org/ui/gfx/ |
skia_util.h | 26 class Transform; 35 GFX_EXPORT void TransformToFlattenedSkMatrix(const gfx::Transform& transform,
|
/external/chromium_org/webkit/renderer/compositor_bindings/ |
web_layer_impl_fixed_bounds_unittest.cc | 30 EXPECT_EQ(gfx::Transform(), layer->layer()->transform()); 33 gfx::Point3F TransformPoint(const gfx::Transform& transform, 36 transform.TransformPoint(&result); 48 EXPECT_TRUE(layer->transform().isIdentity()); 57 // Test if the bounds scale is correctly applied in transform and 60 TransformPoint(layer->layer()->transform(), 89 const gfx::Transform& transform, 179 gfx::Transform transform; local [all...] |
web_transform_operations_impl.cc | 9 #include "ui/gfx/transform.h" 51 gfx::Transform transform(gfx::Transform::kSkipInitialization); 52 transform.matrix() = matrix; 53 transform_operations_.AppendMatrix(transform);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
gen7_clip_state.c | 77 if (!ctx->Transform.DepthClamp) 94 userclip = ctx->Transform.ClipPlanesEnabled;
|
/external/chromium_org/third_party/skia/src/sfnt/ |
SkOTTable_glyf.h | 156 union Transform { 181 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix; 187 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix; 193 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix; 199 SkOTTableGlyphData::Composite::Component::Transform::Matrix matrix; 201 } transform; member in struct:SkOTTableGlyphData::Composite::Component
|
/external/eigen/bench/ |
geometry.cpp | 25 EIGEN_DONT_INLINE void transform(const Transformation& t, Data& data) function 33 EIGEN_DONT_INLINE void transform(const Quaternion<Scalar>& t, Data& data) function 50 EIGEN_DONT_INLINE void transform(const ToRotationMatrixWrapper<QType>& t, Data& data) function 58 EIGEN_DONT_INLINE void transform(const Transform<Scalar,Dim,Projective>& t, Data& data) function 76 BENCH(timer,10,100000,transform(t,data)); 100 Transform<Scalar,3,Isometry> iso3(mat34); 101 Transform<Scalar,3,Affine> aff3(mat34); 102 Transform<Scalar,3,AffineCompact> caff3(mat34); 103 Transform<Scalar,3,Projective> proj3(mat34) [all...] |
/external/jmonkeyengine/engine/src/jbullet/com/jme3/bullet/joints/ |
ConeJoint.java | 35 import com.bulletphysics.linearmath.Transform; 126 Transform transA = new Transform(Converter.convert(rotA)); 130 Transform transB = new Transform(Converter.convert(rotB));
|