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

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

Cleanups, no functional changes

  • Property svn:eol-style set to native
File size: 402 bytes
Line 
1/* -*- mode: c++; c-basic-offset: 4; indent-tabs-mode: nil -*- */
2#ifndef NV_VOLUME_SHADER_H
3#define NV_VOLUME_SHADER_H
4
5#include "NvShader.h"
6
7class Volume;
8
9class NvVolumeShader : public NvShader
10{
11public :
12    virtual ~NvVolumeShader();
13
14    virtual void bind(unsigned int tfID, Volume *volume, int sliceMode) = 0;
15
16    virtual void unbind() = 0;
17
18protected :
19    NvVolumeShader();
20};
21
22
23#endif //
24
Note: See TracBrowser for help on using the repository browser.