Tatooine
computeshader.h
Go to the documentation of this file.
1#ifndef TATOOINE_GL_COMPUTESHADER_H
2#define TATOOINE_GL_COMPUTESHADER_H
3//==============================================================================
4#include <string>
5
6#include "shaderstage.h"
7#include "dllexport.h"
8//==============================================================================
9namespace tatooine::gl {
10//==============================================================================
11class computeshader : public shaderstage {
12 public:
13 computeshader(std::filesystem::path const& sourcepath);
14 computeshader(shadersource const& sourcepath);
16};
17//==============================================================================
18} // namespace tatooine::gl
19//==============================================================================
20#endif
Definition: computeshader.h:11
computeshader(computeshader &&other)
computeshader(std::filesystem::path const &sourcepath)
computeshader(shadersource const &sourcepath)
Definition: shaderstage.h:21
Definition: ansiformat.h:6
Definition: shadersource.h:8