arbeit
Main Page | Namespace List | Class Hierarchy | Alphabetical List | Compound List | File List | Namespace Members | Compound Members | File Members

GrinderKinds.h

Go to the documentation of this file.
00001 //------------------------------------------------------------------------
00002 //
00003 //   Joe Kniss
00004 //     3-20-03
00005 //                   ________    ____   ___ 
00006 //                  |        \  /    | /  /
00007 //                  +---+     \/     |/  /
00008 //                  +--+|  |\    /|     < 
00009 //                  |  ||  | \  / |  |\  \ 
00010 //                  |      |  \/  |  | \  \ 
00011 //                   \_____|      |__|  \__\
00012 //                       Copyright  2003 
00013 //                      Joe Michael Kniss
00014 //                   <<< jmk@cs.utah.edu >>>
00015 //               "All Your Base are Belong to Us"
00016 //-------------------------------------------------------------------------
00017 
00018 /// GrinderKinds.h
00019 
00020 /// the different kinds of cranks and meta programs are defined here
00021 ///   used in the respective base classes
00022 
00023 #ifndef __GRINDER_KINDS_DOT_H
00024 #define __GRINDER_KINDS_DOT_H
00025 
00026 enum GRINDER_KINDS {
00027    GK_UNKNOWN    = 0,
00028    GK_VERTEX     = 1<<0,  ///vertex program
00029    GK_FRAGMENT   = 1<<1,  ///fragment program
00030    GK_GLIFT      = 1<<2,  ///glift/GL state
00031    GK_SHADER     = 1<<3,  ///glift shader
00032    GK_PASS       = 1<<4,  ///render pass
00033    GK_MULTI_PASS = 1<<5,  ///multiple render passes
00034    GK_KIND_LAST
00035 };
00036 
00037 
00038 #endif
00039 
00040 

Send questions, comments, and bug reports to:
jmk