Blame view

VolumeShaderStruct.h 233 Bytes
ee96a02c   David Mayerich   first commit from...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  #ifndef VOLUME_SHADER_STRUCT_H
  #define VOLUME_SHADER_STRUCT_H
  
  #include <string>
  #include "rts_glShaderProgram.h"
  using namespace std;
  
  struct VolumeShader
  {
  	string Name;
  	string Filename;
  	rts_glShaderProgram glProgram;
  
  };
  
  #endif