Home
last modified time | relevance | path

Searched refs:outMatrix (Results 1 – 2 of 2) sorted by relevance

/cts/hostsidetests/adpf/app/hintsession/src/cpp/
DUtility.cpp50 float *Utility::buildOrthographicMatrix(float *outMatrix, float halfHeight, float aspect, in buildOrthographicMatrix() argument
55 outMatrix[0] = 1.f / halfWidth; in buildOrthographicMatrix()
56 outMatrix[1] = 0.f; in buildOrthographicMatrix()
57 outMatrix[2] = 0.f; in buildOrthographicMatrix()
58 outMatrix[3] = 0.f; in buildOrthographicMatrix()
61 outMatrix[4] = 0.f; in buildOrthographicMatrix()
62 outMatrix[5] = 1.f / halfHeight; in buildOrthographicMatrix()
63 outMatrix[6] = 0.f; in buildOrthographicMatrix()
64 outMatrix[7] = 0.f; in buildOrthographicMatrix()
67 outMatrix[8] = 0.f; in buildOrthographicMatrix()
[all …]
DUtility.h41 static float *buildOrthographicMatrix(float *outMatrix, float halfHeight, float aspect,
44 static float *buildIdentityMatrix(float *outMatrix);