00001 /*************************************************************************** 00002 * Copyright (C) 1998-2010 by authors (see AUTHORS.txt ) * 00003 * * 00004 * This file is part of LuxRays. * 00005 * * 00006 * LuxRays is free software; you can redistribute it and/or modify * 00007 * it under the terms of the GNU General Public License as published by * 00008 * the Free Software Foundation; either version 3 of the License, or * 00009 * (at your option) any later version. * 00010 * * 00011 * LuxRays is distributed in the hope that it will be useful, * 00012 * but WITHOUT ANY WARRANTY; without even the implied warranty of * 00013 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * 00014 * GNU General Public License for more details. * 00015 * * 00016 * You should have received a copy of the GNU General Public License * 00017 * along with this program. If not, see <http://www.gnu.org/licenses/>. * 00018 * * 00019 * LuxRays website: http://www.luxrender.net * 00020 ***************************************************************************/ 00021 00022 #ifndef _LUXRAYS_KERNELS_H 00023 #define _LUXRAYS_KERNELS_H 00024 00025 #include <string> 00026 00027 namespace luxrays { 00028 00029 // Intersection kernels 00030 extern std::string KernelSource_BVH; 00031 extern std::string KernelSource_QBVH; 00032 extern std::string KernelSource_MQBVH; 00033 00034 // Pixel kernels 00035 extern std::string KernelSource_Pixel_ClearFB; 00036 extern std::string KernelSource_Pixel_ClearSampleFB; 00037 extern std::string KernelSource_Pixel_UpdateFrameBuffer; 00038 extern std::string KernelSource_Pixel_AddSampleBuffer; 00039 extern std::string KernelSource_Pixel_AddSampleBufferPreview; 00040 extern std::string KernelSource_Pixel_AddSampleBufferGaussian2x2; 00041 00042 } 00043 00044 #endif /* _LUXRAYS_KERNELS_H */
1.6.3