Merge branch 'trunk' of https://github.com/lrre-foss/rnr into trunk
This commit is contained in:
commit
296496d1a9
|
|
@ -1 +1 @@
|
|||
Subproject commit 218159140c7d79ae745e646da721d12331f536f5
|
||||
Subproject commit e25de95445f2d635a125ab463426bb7fda017093
|
||||
|
|
@ -7,8 +7,8 @@
|
|||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
if (!fs::is_directory("ShaderCache") || !fs::exists("ShaderCache"))
|
||||
fs::create_directory("ShaderCache");
|
||||
if (!std::filesystem::is_directory("ShaderCache") || !std::filesystem::exists("ShaderCache")) {
|
||||
std::filesystem::create_directory("ShaderCache");
|
||||
}
|
||||
|
||||
QApplication app(argc, argv);
|
||||
|
|
|
|||
|
|
@ -10,8 +10,8 @@
|
|||
|
||||
int main(int argc, char** argv)
|
||||
{
|
||||
if (!fs::is_directory("ShaderCache") || !fs::exists("ShaderCache"))
|
||||
fs::create_directory("ShaderCache");
|
||||
if (!std::filesystem::is_directory("ShaderCache") || !std::filesystem::exists("ShaderCache")) {
|
||||
std::filesystem::create_directory("ShaderCache");
|
||||
}
|
||||
|
||||
QSurfaceFormat format;
|
||||
|
|
|
|||
Loading…
Reference in New Issue