|
|
|||
File indexing completed on 2026-04-09 07:49:21
0001 // name=SRG_test ; gcc $name.cc -std=c++11 -lstdc++ -I.. -o /tmp/$name && /tmp/$name 0002 0003 #include <vector> 0004 #include <iostream> 0005 #include <iomanip> 0006 0007 #include "SRG.h" 0008 0009 int main() 0010 { 0011 std::vector<unsigned> raygenmode = {SRG_RENDER, SRG_SIMTRACE, SRG_SIMULATE} ; 0012 for(unsigned i=0 ; i < raygenmode.size() ; i++) 0013 { 0014 std::cout << std::setw(5) << raygenmode[i] << std::setw(20) << SRG::Name(raygenmode[i]) << std::endl ; 0015 } 0016 return 0 ; 0017 }
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|