Print name of Vulkan rendering method on startup
This helps troubleshooting as the CLI logs now distinguish between Forward+ and Forward Mobile.
This commit is contained in:
parent
1ed549e64b
commit
f3e8300b50
@ -179,7 +179,7 @@ typedef void (*DEBUGPROCARB)(GLenum source,
|
|||||||
typedef void (*DebugMessageCallbackARB)(DEBUGPROCARB callback, const void *userParam);
|
typedef void (*DebugMessageCallbackARB)(DEBUGPROCARB callback, const void *userParam);
|
||||||
|
|
||||||
void RasterizerGLES3::initialize() {
|
void RasterizerGLES3::initialize() {
|
||||||
print_line("OpenGL Renderer: " + RS::get_singleton()->get_video_adapter_name());
|
print_line(vformat("OpenGL API %s - Compatibility - Using Device: %s - %s", RS::get_singleton()->get_video_adapter_api_version(), RS::get_singleton()->get_video_adapter_vendor(), RS::get_singleton()->get_video_adapter_name()));
|
||||||
}
|
}
|
||||||
|
|
||||||
void RasterizerGLES3::finalize() {
|
void RasterizerGLES3::finalize() {
|
||||||
|
@ -1299,8 +1299,15 @@ Error VulkanContext::_create_physical_device(VkSurfaceKHR p_surface) {
|
|||||||
// Get device version
|
// Get device version
|
||||||
device_api_version = gpu_props.apiVersion;
|
device_api_version = gpu_props.apiVersion;
|
||||||
|
|
||||||
|
String rendering_method;
|
||||||
|
if (OS::get_singleton()->get_current_rendering_method() == "mobile") {
|
||||||
|
rendering_method = "Forward Mobile";
|
||||||
|
} else {
|
||||||
|
rendering_method = "Forward+";
|
||||||
|
}
|
||||||
|
|
||||||
// Output our device version
|
// Output our device version
|
||||||
print_line("Vulkan API " + get_device_api_version() + " - " + "Using Vulkan Device #" + itos(device_index) + ": " + device_vendor + " - " + device_name);
|
print_line(vformat("Vulkan API %s - %s - Using Vulkan Device #%d: %s - %s", get_device_api_version(), rendering_method, device_index, device_vendor, device_name));
|
||||||
|
|
||||||
{
|
{
|
||||||
Error _err = _initialize_device_extensions();
|
Error _err = _initialize_device_extensions();
|
||||||
|
Loading…
Reference in New Issue
Block a user