HomeSort by relevance Sort by last modified time
    Searched refs:Matrix4f (Results 1 - 25 of 103) sorted by null

1 2 3 4 5

  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
MatrixTransform.java 22 import android.renderscript.Matrix4f;
30 Matrix4f mLocalMatrix;
32 mLocalMatrix = new Matrix4f();
35 public void setMatrix(Matrix4f matrix) {
40 public Matrix4f getMatrix() {
41 return new Matrix4f(mLocalMatrix.getArray());
PointLight.java 22 import android.renderscript.Matrix4f;
RenderableBase.java 22 import android.renderscript.Matrix4f;
RenderableGroup.java 22 import android.renderscript.Matrix4f;
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
Matrix4fTest.java 18 import android.renderscript.Matrix4f;
30 void checkIdentity(Matrix4f m, float delta) {
55 void checkData(Matrix4f m, float[] data, float delta) {
61 void checkData(Matrix4f m, float[] data) {
68 Matrix4f m = new Matrix4f();
73 m = new Matrix4f(setData);
79 Matrix4f m = new Matrix4f(setData);
89 Matrix4f m = new Matrix4f()
    [all...]
ProgramVertexFixedFunctionTest.java 24 import android.renderscript.Matrix4f;
50 pva.setModelview(new Matrix4f());
53 pva.setProjection(new Matrix4f());
56 pva.setTexture(new Matrix4f());
  /external/jmonkeyengine/engine/src/core/com/jme3/scene/
CollisionData.java 39 import com.jme3.math.Matrix4f;
49 Matrix4f worldMatrix,
Geometry.java 43 import com.jme3.math.Matrix4f;
74 protected transient Matrix4f cachedWorldMat = new Matrix4f();
90 protected Matrix4f cachedOffsetMat = null;
314 cachedOffsetMat = new Matrix4f();
346 Matrix4f tmpMat = vars.tempMat42;
354 Matrix4f scaleMat = vars.tempMat4;
396 Matrix4f scaleMat = vars.tempMat4;
404 * A {@link Matrix4f matrix} that transforms the {@link Geometry#getMesh() mesh}
412 public Matrix4f getWorldMatrix()
    [all...]
  /frameworks/base/graphics/java/android/renderscript/
ProgramVertexFixedFunction.java 205 Matrix4f mModel;
206 Matrix4f mProjection;
207 Matrix4f mTexture;
227 mModel = new Matrix4f();
228 mProjection = new Matrix4f();
229 mTexture = new Matrix4f();
230 setModelview(new Matrix4f());
231 setProjection(new Matrix4f());
232 setTexture(new Matrix4f());
246 private void addToBuffer(int offset, Matrix4f m)
    [all...]
Matrix4f.java 27 public class Matrix4f {
32 public Matrix4f() {
44 public Matrix4f(float[] dataArray) {
111 public void load(Matrix4f src) {
226 public void loadMultiply(Matrix4f lhs, Matrix4f rhs) {
329 Matrix4f m1 = new Matrix4f();
330 Matrix4f m2 = new Matrix4f();
    [all...]
ScriptIntrinsicColorMatrix.java 33 private final Matrix4f mMatrix = new Matrix4f();
72 public void setColorMatrix(Matrix4f m) {
  /frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
Matrix4f.java 27 public class Matrix4f {
32 public Matrix4f() {
44 public Matrix4f(float[] dataArray) {
111 public void load(Matrix4f src) {
226 public void loadMultiply(Matrix4f lhs, Matrix4f rhs) {
329 Matrix4f m1 = new Matrix4f();
330 Matrix4f m2 = new Matrix4f();
    [all...]
ScriptIntrinsicColorMatrix.java 31 private final Matrix4f mMatrix = new Matrix4f();
70 public void setColorMatrix(Matrix4f m) {
  /frameworks/base/tests/RenderScriptTests/ImageProcessing2/src/com/android/rs/image/
ColorMatrix.java 36 Matrix4f m = new Matrix4f();
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/constraints/
Feature.java 4 import com.jme3.math.Matrix4f;
198 Matrix4f m = this.getParentWorldTransformMatrix();
200 Matrix4f matrix = this.toMatrix(transform);
224 Matrix4f m = this.getParentWorldTransformMatrix();
252 public Matrix4f getWorldTransformMatrix() {
254 Matrix4f result = new Matrix4f();
260 Matrix4f result = new Matrix4f();
269 public Matrix4f getParentWorldTransformMatrix() {
    [all...]
ConstraintDistLimit.java 4 import com.jme3.math.Matrix4f;
71 Matrix4f targetWorldMatrix = target.getWorldTransformMatrix();
73 Matrix4f m = this.owner.getParentWorldTransformMatrix();
75 Matrix4f ownerWorldMatrix = this.owner.getWorldTransformMatrix();
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Renderer.java 37 import com.jme3.math.Matrix4f;
120 public void setWorldMatrix(Matrix4f worldMatrix);
129 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix);
  /frameworks/base/tests/RenderScriptTests/ImageProcessing/src/com/android/rs/image/
ColorMatrix.java 23 import android.renderscript.Matrix4f;
44 Matrix4f m = new Matrix4f();
GroupTest.java 27 import android.renderscript.Matrix4f;
60 Matrix4f m = new Matrix4f();
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
BoneContext.java 8 import com.jme3.math.Matrix4f;
33 private Matrix4f armatureMatrix;
43 private Matrix4f restMatrix;
45 private Matrix4f inverseTotalTransformation;
47 private Matrix4f inverseParentMatrix;
64 public BoneContext(Structure boneStructure, Matrix4f objectToArmatureMatrix, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException {
85 private BoneContext(Structure boneStructure, BoneContext parent, Matrix4f objectToArmatureMatrix, final Map<Long, Structure> bonesPoseChannels, BlenderContext blenderContext) throws BlenderFileException {
110 private void computeRestMatrix(Matrix4f objectToArmatureMatrix) {
116 inverseParentMatrix = Matrix4f.IDENTITY.clone();
174 Matrix4f pose = this.restMatrix.clone();
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
NullRenderer.java 38 import com.jme3.math.Matrix4f;
83 public void setWorldMatrix(Matrix4f worldMatrix) {
86 public void setViewProjectionMatrices(Matrix4f viewMatrix, Matrix4f projMatrix) {
  /external/jmonkeyengine/engine/src/core/com/jme3/util/
TempVars.java 188 public final Matrix4f tempMat4 = new Matrix4f();
189 public final Matrix4f tempMat42 = new Matrix4f();
  /external/jmonkeyengine/engine/src/core/com/jme3/shadow/
PssmShadowUtil.java 36 import com.jme3.math.Matrix4f;
75 Matrix4f mat = cam.getViewMatrix();
  /packages/wallpapers/Basic/src/com/android/wallpaper/galaxy/
GalaxyRS.java 82 private Matrix4f getProjectionNormalized(int w, int h) {
84 Matrix4f m1 = new Matrix4f();
85 Matrix4f m2 = new Matrix4f();
107 Matrix4f proj = new Matrix4f();
111 Matrix4f projNorm = getProjectionNormalized(mWidth, mHeight);
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SimpleModelView.java 19 import android.renderscript.Matrix4f;
47 private Matrix4f mIdentityMatrix = new Matrix4f();
182 mRender.onPostureChanged(new Matrix4f(mRotationMatrix));

Completed in 597 milliseconds

1 2 3 4 5