HomeSort by relevance Sort by last modified time
    Searched refs:Vector4 (Results 1 - 17 of 17) sorted by null

  /ndk/tests/device/b8708181-Vector4/jni/
Vector4.cpp 18 class Vector4
21 inline Vector4(float a, float b, float c, float d);
22 inline Vector4() {}
28 inline Vector4::Vector4(float a, float b, float c, float d)
33 inline float32x4_t Vector4::Set(float a, float b, float c, float d)
40 Vector4 initVector4(float a, float b, float c, float d)
42 return Vector4(a, b, c, d);
45 void initVector4(Vector4 *v, float a, float b, float c, float d)
52 Vector4 v
    [all...]
Android.mk 4 LOCAL_MODULE := Vector4
5 LOCAL_SRC_FILES := Vector4.cpp
  /external/jmonkeyengine/engine/src/core/com/jme3/shader/
VarType.java 40 Vector4,
Uniform.java 107 case Vector4:
152 case Vector4:
248 case Vector4:
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
mathutil.h 19 struct Vector4
21 Vector4() {}
22 Vector4(float x, float y, float z, float w) : x(x), y(y), z(z), w(w) {}
  /external/eigen/test/
geo_orthomethods.cpp 25 typedef Matrix<Scalar,4,1> Vector4;
54 Vector4 v40 = Vector4::Random(),
55 v41 = Vector4::Random(),
56 v42 = Vector4::Random();
geo_quaternion.cpp 53 typedef Matrix<Scalar,4,1> Vector4;
167 q1.coeffs() = Vector4::Random().normalized();
geo_transformations.cpp 25 typedef Matrix<Scalar,4,1> Vector4;
96 typedef Matrix<Scalar,4,1> Vector4;
199 mat4 << mat3 , Vector3::Zero() , Vector4::Zero().transpose();
  /external/jmonkeyengine/engine/src/core/com/jme3/material/
Material.java 584 setParam(name, VarType.Vector4, value);
614 setParam(name, VarType.Vector4, value);
657 ambientColor.setValue(VarType.Vector4, getAmbientColor(lightList));
734 ambientColor.setValue(VarType.Vector4, getAmbientColor(lightList));
738 ambientColor.setValue(VarType.Vector4, ColorRGBA.Black);
753 lightColor.setValue(VarType.Vector4, tmpLightColor);
761 lightPos.setValue(VarType.Vector4, tmpLightPosition);
763 lightDir.setValue(VarType.Vector4, tmpLightDirection);
771 lightPos.setValue(VarType.Vector4, tmpLightPosition);
773 lightDir.setValue(VarType.Vector4, tmpLightDirection)
    [all...]
MatParam.java 162 * Assuming "ABC" is a Vector4 parameter, then the value
237 case Vector4:
252 throw new UnsupportedOperationException("Unexpected Vector4 type: " + value);
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
J3MLoader.java 182 case Vector4:
184 throw new IOException("Vector4 value parameter must have 4 entries: " + value);
248 type = VarType.Vector4;
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/transforms/
TransformationMatrix.cpp 78 typedef double Vector4[4];
250 static void v4MulPointByMatrix(const Vector4 p, const TransformationMatrix::Matrix4& m, Vector4 result)
328 Vector4 rightHandSide;
341 Vector4 perspectivePoint;
366 // Vector4 type and functions need to be added to the common set.
    [all...]
  /external/eigen/test/eigen2/
eigen2_geometry.cpp 26 typedef Matrix<Scalar,4,1> Vector4;
187 mat4 << mat3 , Vector3::Zero() , Vector4::Zero().transpose();
eigen2_geometry_with_eigen2_prefix.cpp 28 typedef Matrix<Scalar,4,1> Vector4;
189 mat4 << mat3 , Vector3::Zero() , Vector4::Zero().transpose();
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
RenderManager.java 426 u.setValue(VarType.Vector4, tempVec4);
    [all...]
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
OGLESShaderRenderer.java 837 case Vector4:
839 logger.info("GLES20.glUniform4f set Vector4." + uniform.getName());
    [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
LwjglRenderer.java 830 case Vector4:
    [all...]

Completed in 321 milliseconds