mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 21:41:26 +12:00
Set some things to log level always
This commit is contained in:
parent
088931525d
commit
91b8e7504e
2 changed files with 4 additions and 4 deletions
|
@ -706,7 +706,7 @@ private:
|
||||||
vkGetPhysicalDeviceMemoryProperties(pdev, &memory_properties);
|
vkGetPhysicalDeviceMemoryProperties(pdev, &memory_properties);
|
||||||
get_physical_device_features(allow_extensions);
|
get_physical_device_features(allow_extensions);
|
||||||
|
|
||||||
rsx_log.notice("Found vulkan-compatible GPU: '%s' running on driver %s", get_name(), get_driver_version());
|
rsx_log.always("Found vulkan-compatible GPU: '%s' running on driver %s", get_name(), get_driver_version());
|
||||||
|
|
||||||
if (get_driver_vendor() == driver_vendor::RADV &&
|
if (get_driver_vendor() == driver_vendor::RADV &&
|
||||||
get_name().find("LLVM 8.0.0") != umax)
|
get_name().find("LLVM 8.0.0") != umax)
|
||||||
|
@ -2877,7 +2877,7 @@ public:
|
||||||
#endif
|
#endif
|
||||||
bool createInstance(const char *app_name, bool fast = false)
|
bool createInstance(const char *app_name, bool fast = false)
|
||||||
{
|
{
|
||||||
//Initialize a vulkan instance
|
// Initialize a vulkan instance
|
||||||
VkApplicationInfo app = {};
|
VkApplicationInfo app = {};
|
||||||
|
|
||||||
app.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
|
app.sType = VK_STRUCTURE_TYPE_APPLICATION_INFO;
|
||||||
|
@ -2887,7 +2887,7 @@ public:
|
||||||
app.engineVersion = 0;
|
app.engineVersion = 0;
|
||||||
app.apiVersion = VK_API_VERSION_1_0;
|
app.apiVersion = VK_API_VERSION_1_0;
|
||||||
|
|
||||||
//Set up instance information
|
// Set up instance information
|
||||||
|
|
||||||
std::vector<const char *> extensions;
|
std::vector<const char *> extensions;
|
||||||
std::vector<const char *> layers;
|
std::vector<const char *> layers;
|
||||||
|
|
|
@ -388,7 +388,7 @@ int main(int argc, char** argv)
|
||||||
// Write OS version
|
// Write OS version
|
||||||
logs::stored_message os;
|
logs::stored_message os;
|
||||||
os.m.ch = nullptr;
|
os.m.ch = nullptr;
|
||||||
os.m.sev = logs::level::notice;
|
os.m.sev = logs::level::always;
|
||||||
os.stamp = 0;
|
os.stamp = 0;
|
||||||
os.text = utils::get_OS_version();
|
os.text = utils::get_OS_version();
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue