nuclear@12: /* nuclear@12: glviewvol is an OpenGL 3D volume data viewer nuclear@12: Copyright (C) 2014 John Tsiombikas nuclear@12: nuclear@12: This program is free software: you can redistribute it and/or modify nuclear@12: it under the terms of the GNU General Public License as published by nuclear@12: the Free Software Foundation, either version 3 of the License, or nuclear@12: (at your option) any later version. nuclear@12: nuclear@12: This program is distributed in the hope that it will be useful, nuclear@12: but WITHOUT ANY WARRANTY; without even the implied warranty of nuclear@12: MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the nuclear@12: GNU General Public License for more details. nuclear@12: nuclear@12: You should have received a copy of the GNU General Public License nuclear@12: along with this program. If not, see . nuclear@12: */ nuclear@3: #include nuclear@3: #include nuclear@3: #include "opt.h" nuclear@3: nuclear@3: static struct { nuclear@3: const char *name; nuclear@3: RendererType rtype; nuclear@3: } rend[] = { nuclear@3: { "fast", REND_FAST }, nuclear@3: { 0, REND_NONE } nuclear@3: }; nuclear@3: nuclear@3: Options opt; nuclear@3: nuclear@3: static void init_opt() nuclear@3: { nuclear@3: opt.fname = 0; nuclear@3: opt.rend_type = REND_FAST; nuclear@6: opt.xsz = 800; nuclear@6: opt.ysz = 800; nuclear@3: } nuclear@3: nuclear@3: static RendererType renderer_type(const char *name) nuclear@3: { nuclear@3: for(int i=0; rend[i].name; i++) { nuclear@3: if(strcmp(rend[i].name, name) == 0) { nuclear@3: return rend[i].rtype; nuclear@3: } nuclear@3: } nuclear@3: return REND_NONE; nuclear@3: } nuclear@3: nuclear@3: int parse_args(int argc, char **argv) nuclear@3: { nuclear@3: init_opt(); nuclear@3: nuclear@3: for(int i=1; i