glviewvol

diff src/rend_fast.h @ 8:fb6d93471352

main thing done
author John Tsiombikas <nuclear@member.fsf.org>
date Tue, 30 Dec 2014 20:03:32 +0200
parents f22be47a3572
children 773f89037a35
line diff
     1.1 --- a/src/rend_fast.h	Tue Dec 30 17:28:38 2014 +0200
     1.2 +++ b/src/rend_fast.h	Tue Dec 30 20:03:32 2014 +0200
     1.3 @@ -8,6 +8,9 @@
     1.4  	unsigned int vol_tex, xfer_tex;
     1.5  	bool vol_tex_valid, xfer_tex_valid;
     1.6  
     1.7 +	int proxy_count, vbo_proxy_count;
     1.8 +	unsigned int vbo;
     1.9 +
    1.10  public:
    1.11  	RendererFast();
    1.12  
    1.13 @@ -16,6 +19,9 @@
    1.14  
    1.15  	void set_volume(Volume *vol);
    1.16  
    1.17 +	void set_proxy_count(int n);
    1.18 +	int get_proxy_count() const;
    1.19 +
    1.20  	void update(unsigned int msec);
    1.21  	void render() const;
    1.22  };