コード例 #1
0
ファイル: Utils.cpp プロジェクト: OpenedHand/ogles
	void CopyMatrix(const Matrix4x4& matrix, GLfixed *params) {
		for (size_t index = 0; index < 16; ++index) {
			params[index] = matrix.Element(index);
		}
	}