2014-06-18 20:10:46 +00:00
|
|
|
#ifndef RENDERCONFIG_H
|
|
|
|
#define RENDERCONFIG_H
|
|
|
|
|
|
|
|
#include "software_global.h"
|
|
|
|
|
|
|
|
namespace paysages {
|
|
|
|
namespace software {
|
|
|
|
|
2015-11-09 21:30:46 +00:00
|
|
|
class SOFTWARESHARED_EXPORT RenderConfig {
|
|
|
|
public:
|
|
|
|
RenderConfig(int width = 0, int height = 0, int antialias = 1, int quality = 5);
|
2014-06-18 20:10:46 +00:00
|
|
|
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int antialias;
|
|
|
|
int quality;
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // RENDERCONFIG_H
|