Home
last modified time | relevance | path

Searched refs:minorMatrices (Results 1 – 5 of 5) sorted by relevance

/third_party/flutter/skia/third_party/externals/angle2/src/common/
Dmatrix_utils.h191 const float minorMatrices[4][3 * 3] = {{ in determinant() local
235 return at(0, 0) * Matrix<T>(minorMatrices[0], 3).determinant() - in determinant()
236 at(0, 1) * Matrix<T>(minorMatrices[1], 3).determinant() + in determinant()
237 at(0, 2) * Matrix<T>(minorMatrices[2], 3).determinant() - in determinant()
238 at(0, 3) * Matrix<T>(minorMatrices[3], 3).determinant(); in determinant()
/third_party/skia/third_party/externals/angle2/src/common/
Dmatrix_utils.h192 const float minorMatrices[4][3 * 3] = {{ in determinant() local
236 return at(0, 0) * Matrix<T>(minorMatrices[0], 3).determinant() - in determinant()
237 at(0, 1) * Matrix<T>(minorMatrices[1], 3).determinant() + in determinant()
238 at(0, 2) * Matrix<T>(minorMatrices[2], 3).determinant() - in determinant()
239 at(0, 3) * Matrix<T>(minorMatrices[3], 3).determinant(); in determinant()
/third_party/vk-gl-cts/framework/common/
DtcuMatrix.hpp169 const T minorMatrices[4][3*3] = in doDeterminant() local
193 return + mat(0,0) * determinant(Matrix<T, 3, 3>(minorMatrices[0])) in doDeterminant()
194 - mat(0,1) * determinant(Matrix<T, 3, 3>(minorMatrices[1])) in doDeterminant()
195 + mat(0,2) * determinant(Matrix<T, 3, 3>(minorMatrices[2])) in doDeterminant()
196 - mat(0,3) * determinant(Matrix<T, 3, 3>(minorMatrices[3])); in doDeterminant()
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fShaderMatrixTests.cpp675 const float minorMatrices[4][3*3] = in determinant() local
699 return + mat(0,0) * determinant(tcu::Mat3(minorMatrices[0])) in determinant()
700 - mat(0,1) * determinant(tcu::Mat3(minorMatrices[1])) in determinant()
701 + mat(0,2) * determinant(tcu::Mat3(minorMatrices[2])) in determinant()
702 - mat(0,3) * determinant(tcu::Mat3(minorMatrices[3])); in determinant()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/shaderrender/
DvktShaderRenderMatrixTests.cpp669 const float minorMatrices[4][3*3] = in determinant() local
693 return + mat(0,0) * determinant(tcu::Mat3(minorMatrices[0])) in determinant()
694 - mat(0,1) * determinant(tcu::Mat3(minorMatrices[1])) in determinant()
695 + mat(0,2) * determinant(tcu::Mat3(minorMatrices[2])) in determinant()
696 - mat(0,3) * determinant(tcu::Mat3(minorMatrices[3])); in determinant()