/*---------------------------------------------------------------------------* Project: NintendoWare File: lyt_Config.h Copyright (C)2009-2011 Nintendo/HAL Laboratory, Inc. All rights reserved. These coded instructions, statements, and computer programs contain proprietary information of Nintendo and/or its licensed developers and are protected by national and international copyright laws. 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. The content herein is highly confidential and should be handled accordingly. $Revision: 31311 $ *---------------------------------------------------------------------------*/ #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_