Example #1
0
	void CopyMatrix(const Matrix4x4& matrix, GLfixed *params) {
		for (size_t index = 0; index < 16; ++index) {
			params[index] = matrix.Element(index);
		}
	}