1 /*---------------------------------------------------------------------------*
2   Project:  NintendoWare
3   File:     lyt_Supplement.h
4 
5   Copyright (C)2009-2011 Nintendo/HAL Laboratory, Inc.  All rights reserved.
6 
7   These coded instructions, statements, and computer programs contain proprietary
8   information of Nintendo and/or its licensed developers and are protected by
9   national and international copyright laws. They may not be disclosed to third
10   parties or copied or duplicated in any form, in whole or in part, without the
11   prior written consent of Nintendo.
12 
13   The content herein is highly confidential and should be handled accordingly.
14 
15   $Revision: 31311 $
16  *---------------------------------------------------------------------------*/
17 
18 #ifndef NW_LYT_SUPPLEMENT_H_
19 #define NW_LYT_SUPPLEMENT_H_
20 
21 #include <nw/math.h>
22 
23 namespace nw
24 {
25 namespace lyt
26 {
27 namespace internal
28 {
29 
30 math::MTX44* MTX44Transpose(math::MTX44* pOut, const math::MTX34* pSrc);
31 math::MTX44* MTX44Mult(math::MTX44* pOut, const math::MTX34* p1, const math::MTX44* p2);
32 
33 } // namespace nw::lyt::internal
34 } // namespace nw::lyt
35 } // namespace nw
36 
37 #endif // NW_LYT_SUPPLEMENT_H_
38