Imagesequencer update:

- label/image data works
- fixed issues with instrument firing
- read handled in more uniform way
- adding ALICE scanner
- distance fading in renderabletrail (WIP)
- essential fixes to renderableFOV
- and additional changes to other classes reliant on imagesequenser.
This commit is contained in:
Michal Marcinkowski
2015-04-22 21:53:28 -04:00
parent de6fcf1583
commit 8becbbde41
29 changed files with 673 additions and 351 deletions
@@ -40,6 +40,7 @@ public:
bool initialize(RenderableModel* parent) override;
void deinitialize() override;
void render() override;
void changeRenderMode(const GLenum mode);
private:
struct Vertex {
@@ -56,6 +57,7 @@ private:
GLuint _vaoID;
GLuint _vbo;
GLuint _ibo;
GLenum _mode;
std::vector<Vertex> _vertices;
std::vector<int> _indices;