source: GTP/trunk/Lib/Vis/Preprocessing/src/RenderSampler.h @ 2176

Revision 2176, 518 bytes checked in by mattausch, 17 years ago (diff)

removed using namespace std from .h

  • Property svn:executable set to *
Line 
1#ifndef _RenderSampler_H__
2#define _RenderSampler_H__
3
4#include <fstream>
5//
6
7#include "Preprocessor.h"
8
9namespace GtpVisibilityPreprocessor {
10
11class Exporter;
12
13/** Sampling based visibility preprocessing. The implementation is based on heuristical
14    sampling of view space */
15class RenderSampler : public Preprocessor {
16
17public:
18  int mSamples;
19 
20  RenderSampler();
21  ~RenderSampler() {}
22 
23  virtual bool ComputeVisibility();
24 
25 
26protected:
27  ofstream mStats;
28 
29};
30
31};
32
33#endif
Note: See TracBrowser for help on using the repository browser.