d9174eb4bb
* envprobe MSAA support; vulkan: transient attachment support; dx12: renderpass resolve subresource improvement; * envprobe window update * envprobe gi boost fix * probes will render fully diffuse scene, because inside probes there is no fallback reflection
34 lines
596 B
C++
34 lines
596 B
C++
#include "wiVersion.h"
|
|
|
|
#include <string>
|
|
|
|
namespace wi::version
|
|
{
|
|
// main engine core
|
|
const int major = 0;
|
|
// minor features, major updates, breaking compatibility changes
|
|
const int minor = 60;
|
|
// minor bug fixes, alterations, refactors, updates
|
|
const int revision = 97;
|
|
|
|
const std::string version_string = std::to_string(major) + "." + std::to_string(minor) + "." + std::to_string(revision);
|
|
|
|
int GetMajor()
|
|
{
|
|
return major;
|
|
}
|
|
int GetMinor()
|
|
{
|
|
return minor;
|
|
}
|
|
int GetRevision()
|
|
{
|
|
return revision;
|
|
}
|
|
const char* GetVersionString()
|
|
{
|
|
return version_string.c_str();
|
|
}
|
|
|
|
}
|