26 lines
636 B
C
26 lines
636 B
C
|
#ifndef DUST3D_APPLICATION_MONOCHROME_OPENGL_OBJECT_H_
|
||
|
#define DUST3D_APPLICATION_MONOCHROME_OPENGL_OBJECT_H_
|
||
|
|
||
|
#include <memory>
|
||
|
#include <QMutex>
|
||
|
#include <QOpenGLVertexArrayObject>
|
||
|
#include <QOpenGLBuffer>
|
||
|
#include "monochrome_mesh.h"
|
||
|
|
||
|
class MonochromeOpenGLObject
|
||
|
{
|
||
|
public:
|
||
|
void update(std::unique_ptr<MonochromeMesh> mesh);
|
||
|
void draw();
|
||
|
private:
|
||
|
void copyMeshToOpenGL();
|
||
|
QOpenGLVertexArrayObject m_vertexArrayObject;
|
||
|
QOpenGLBuffer m_buffer;
|
||
|
std::unique_ptr<MonochromeMesh> m_mesh;
|
||
|
bool m_meshIsDirty = false;
|
||
|
QMutex m_meshMutex;
|
||
|
int m_meshLineVertexCount = 0;
|
||
|
};
|
||
|
|
||
|
#endif
|