OctaCore/src/engine/aa.hh
q66 6545f92317 start refactoring for single include file per source file
also, make sure only external symbols are visible globally
2020-04-18 02:20:56 +02:00

26 lines
462 B
C++

#ifndef AA_HH
#define AA_HH
#include <shared/gl.hh>
#include <shared/tools.hh>
#include <shared/geom.hh>
extern matrix4 nojittermatrix;
void setaavelocityparams(GLenum tmu = GL_TEXTURE0);
void setupaa(int w, int h);
void jitteraa();
void doaa(GLuint outfbo, void (*resolve)(GLuint, int));
bool debugaa();
void cleanupaa();
void setaamask(bool val);
void enableaamask(int stencil = 0);
void disableaamask();
bool maskedaa();
bool multisampledaa();
#endif