/*---------------------------------------------------------------------------* Project: NintendoWare File: lyt_Config.h Copyright (C)2009-2010 Nintendo Co., Ltd./HAL Laboratory, Inc. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo of America Inc. and/or Nintendo Company Ltd., and are protected by Federal copyright law. They may not be disclosed to third parties or copied or duplicated in any form, in whole or in part, without the prior written consent of Nintendo. $Revision: 25594 $ *---------------------------------------------------------------------------*/ #ifndef NW_LYT_CONFIG_H_ #define NW_LYT_CONFIG_H_ #include //! //! この定義を無効にすると DMPGL を用いた機能が削除されます。 //! //! ・プログラムオブジェクト、テクスチャオブジェクトなどの DMPGL の //! オブジェクトは生成されません。 //! ・それらを保持するメンバー変数はクラス・構造体から削除されます。 //! ・DMPGL を使ってレイアウトを描画する関数群(Layout::Draw, Pane::Draw)は //! ライブラリから削除されます。 //! //! デフォルトでは定義は有効になっています。 //! #define NW_LYT_DMPGL_ENABLED #if !defined(NW_LYT_DMPGL_ENABLED) && defined(NW_PLATFORM_CTRWIN) # define NW_LYT_DMPGL_ENABLED #endif #endif // NW_LYT_CONFIG_H_