RendType.h

Go to the documentation of this file.
00001 //**************************************************************************/
00002 // Copyright (c) 1998-2007 Autodesk, Inc.
00003 // All rights reserved.
00004 // 
00005 // These coded instructions, statements, and computer programs contain
00006 // unpublished proprietary information written by Autodesk, Inc., and are
00007 // protected by Federal copyright law. They may not be disclosed to third
00008 // parties or copied or duplicated in any form, in whole or in part, without
00009 // the prior written consent of Autodesk, Inc.
00010 //**************************************************************************/
00011 // DESCRIPTION: Values for specifying the desired type of render to a renderer.
00012 // AUTHOR: Attila Szabo - created Aug.23.2005
00013 //***************************************************************************/
00014 
00015 #pragma once
00016 
00017 #include "buildver.h"
00018 
00021 
00032 enum RendType
00033 { 
00034     RENDTYPE_NORMAL, 
00035     RENDTYPE_REGION, 
00036     RENDTYPE_BLOWUP, 
00037     RENDTYPE_SELECT, 
00038     RENDTYPE_REGIONCROP, 
00039     RENDTYPE_REGION_SEL, 
00040     RENDTYPE_CROP_SEL,  
00041 
00042     RENDTYPE_BAKE_SEL,  
00043     RENDTYPE_BAKE_ALL,  
00044     RENDTYPE_BAKE_SEL_CROP, 
00045 
00046     RENDTYPE_BLOWUP_SEL 
00047 };
00048 
00050 
00059 enum RenderUIType {
00060     RENDER_VIEW = 0,    
00061 #ifdef USE_RENDER_REGION_SIMPLIFIED
00062     RENDER_REGION,      
00063     RENDER_CROP,        
00064 #else
00065     RENDER_SELECTED,    
00066     RENDER_REGION,      
00067     RENDER_CROP,        
00068     RENDER_BLOWUP,      
00069     RENDER_BLOWUP_SELECTED, 
00070     RENDER_REGION_SELECTED, 
00071     RENDER_CROP_SELECTED    
00072 #endif
00073 };
00074