src/gl/axesprogram.h

Wed, 17 Feb 2021 16:49:35 +0200

author
Teemu Piippo <teemu@hecknology.net>
date
Wed, 17 Feb 2021 16:49:35 +0200
changeset 102
9f435f66bd0c
parent 70
f21b800b02a4
permissions
-rw-r--r--

stuff

#pragma once
#include "gl/common.h"
#include "gl/abstractshaderprogram.h"

class AxesProgram : public AbstractShaderProgram
{
	Q_OBJECT
public:
	AxesProgram(QObject* parent = nullptr);
protected:
	const char* vertexShaderSource() const override;
	const char* fragmentShaderSource() const override;
	void setupVertexArrays() override;
};

mercurial