gsdx: add GStempdir wrapper to get a tempory directory

Allow to use Linux compatible code for OpenCL
This commit is contained in:
Gregory Hainaut 2017-04-09 13:55:23 +02:00
parent 2b30e7880e
commit 24eb1627e5
2 changed files with 14 additions and 11 deletions

View File

@ -292,22 +292,13 @@ void GSUtil::GetDeviceDescs(list<OCLDeviceDesc>& dl)
desc.name = GetDeviceUniqueName(device);
desc.version = major * 100 + minor * 10;
#ifdef _WIN32
char* buff = new char[MAX_PATH + 1];
GetTempPath(MAX_PATH, buff);
desc.tmppath = string(buff) + "/" + desc.name;
desc.tmppath = GStempdir() + "/" + desc.name;
GSmkdir(desc.tmppath.c_str());
sprintf(buff, "/%d", OCL_PROGRAM_VERSION);
desc.tmppath += buff;
delete[] buff;
desc.tmppath += "/" + std::to_string(OCL_PROGRAM_VERSION);
GSmkdir(desc.tmppath.c_str());
#else
// TODO: linux
ASSERT(0);
#endif
dl.push_back(desc);
}
@ -455,6 +446,17 @@ void GSmkdir(const char* dir)
#endif
}
std::string GStempdir()
{
#ifdef _WIN32
char path[MAX_PATH + 1];
GetTempPath(MAX_PATH, path);
return {path};
#else
return "/tmp";
#endif
}
const char* psm_str(int psm)
{
switch(psm) {

View File

@ -69,6 +69,7 @@ public:
};
void GSmkdir(const char* dir);
std::string GStempdir();
const char* psm_str(int psm);