source: trunk/packages/vizservers/nanovis/dxReader.h @ 2921

Last change on this file since 2921 was 2877, checked in by ldelgass, 12 years ago

Some minor refactoring, also add some more fine grained config.h defines
(e.g. replace NV40 define with feature defines). Add tests for some required
OpenGL extensions (should always check for extensions or base version before
calling entry points from the extension). Also, clamp diffuse and specular
values on input and warn when they are out of range.

  • Property svn:eol-style set to native
File size: 311 bytes
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2#ifndef DXREADER_H
3#define DXREADER_H
4
5#include <iostream>
6
7namespace Rappture {
8    class Outcome;
9}
10class Volume;
11
12extern Volume *
13load_volume_stream(Rappture::Outcome& status, const char *tag,
14                   std::iostream& fin);
15
16#endif
Note: See TracBrowser for help on using the repository browser.