Equalizer  1.4.1
task.h
00001 
00002 /* Copyright (c) 2008-2010, Stefan Eilemann <eile@equalizergraphics.com>
00003  * Copyright (c)      2010, Cedric Stalder <cedric.stalder@gmail.com> 
00004  *
00005  * This library is free software; you can redistribute it and/or modify it under
00006  * the terms of the GNU Lesser General Public License version 2.1 as published
00007  * by the Free Software Foundation.
00008  *  
00009  * This library is distributed in the hope that it will be useful, but WITHOUT
00010  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
00011  * FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
00012  * details.
00013  * 
00014  * You should have received a copy of the GNU Lesser General Public License
00015  * along with this library; if not, write to the Free Software Foundation, Inc.,
00016  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
00017  */
00018 
00019 #ifndef EQFABRIC_TASK_H
00020 #define EQFABRIC_TASK_H
00021 
00022 #include <iostream>
00023 #include <lunchbox/types.h>
00024 
00025 namespace eq
00026 {
00027 namespace fabric
00028 {
00035     enum Task
00036     {
00037         TASK_NONE     = LB_BIT_NONE,
00038         TASK_DEFAULT  = LB_BIT1,   
00039         TASK_VIEW     = LB_BIT2,   
00040         TASK_CLEAR    = LB_BIT5,   
00041         TASK_CULL     = LB_BIT9,   
00042         TASK_DRAW     = LB_BIT13,  
00043         TASK_ASSEMBLE = LB_BIT17,  
00044         TASK_READBACK = LB_BIT21,  
00045         TASK_ALL      = LB_BIT_ALL_32
00046     };
00047 }
00048 }
00049 #endif // EQ_TASK_H
Generated on Mon Nov 26 2012 14:41:49 for Equalizer 1.4.1 by  doxygen 1.7.6.1