/*
 * $Id: mtxuty-cvt.h,v 1.1 2003/02/07 18:15:44 wheeler Exp $
 *
 * $Log: mtxuty-cvt.h,v $
 * Revision 1.1  2003/02/07 18:15:44  wheeler
 * Fox's version of libultra and friends.
 *
 * Revision 1.5  1996/11/26  05:58:08  hayakawa
 * header.hをはずし、個別にインクルードするようにした
 *
 * Revision 1.4  1996/10/20  09:14:09  hayakawa
 * _LANGUAGE_C_PLUS_PLUS を __cplusplus に変更
 *
 */

/*
 * 行列演算支援関数 (変換)
 */

#ifndef __MTXUTY_CVT_H_
#define __MTXUTY_CVT_H_

#include "ultra64.h"		/* n64基本ヘッダ */
#include "u64types.h"		/* u64追加型定義 */

#ifdef __cplusplus
extern "C" {
#endif

void
guLoadMatrixf2i(
    Mtx *const m1,
    const Mtxf *const m2
);
void
guLoadMatrixi2f(
    Mtxf *const m1,
    const Mtx *const m2
);

#ifdef __cplusplus
} /* extern "C" */
#endif

#endif /* __MTXUTY_CVT_H_ */
