Remove all references to mat3 or mat4
This commit is contained in:
parent
9509f43163
commit
df8eb5f4fb
13 changed files with 130 additions and 882 deletions
|
@ -2,29 +2,17 @@ describe('pixi/core/Matrix', function () {
|
|||
'use strict';
|
||||
|
||||
var expect = chai.expect;
|
||||
var mat3 = PIXI.mat3;
|
||||
var mat4 = PIXI.mat4;
|
||||
var Matrix = PIXI.Matrix;
|
||||
/*
|
||||
it('Ensure determineMatrixArrayType works', function () {
|
||||
expect(Matrix).to.be.a('function');
|
||||
});
|
||||
*/
|
||||
it('mat3 exists', function () {
|
||||
expect(mat3).to.be.an('object');
|
||||
|
||||
it('Ensure determineMatrixArrayType exists', function () {
|
||||
expect(PIXI.determineMatrixArrayType).to.be.a('function');
|
||||
});
|
||||
|
||||
it('Confirm new mat3 matrix', function () {
|
||||
var matrix = new mat3.create();
|
||||
pixi_core_Matrix_confirmNewMat3(matrix);
|
||||
it('Matrix exists', function () {
|
||||
expect(PIXI.Matrix).to.be.an('function');
|
||||
});
|
||||
|
||||
it('mat3 exists', function () {
|
||||
expect(mat4).to.be.an('object');
|
||||
});
|
||||
|
||||
it('Confirm new mat4 matrix', function () {
|
||||
var matrix = new mat4.create();
|
||||
pixi_core_Matrix_confirmNewMat4(matrix);
|
||||
it('Confirm new Matrix', function () {
|
||||
var matrix = new PIXI.Matrix();
|
||||
pixi_core_Matrix_confirmNewMatrix(matrix);
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue