|
@@ -1498,9 +1498,9 @@ String EditorExportPlatform::test_etc2() const {
|
|
bool etc_supported = ProjectSettings::get_singleton()->get("rendering/textures/vram_compression/import_etc");
|
|
bool etc_supported = ProjectSettings::get_singleton()->get("rendering/textures/vram_compression/import_etc");
|
|
bool etc2_supported = ProjectSettings::get_singleton()->get("rendering/textures/vram_compression/import_etc2");
|
|
bool etc2_supported = ProjectSettings::get_singleton()->get("rendering/textures/vram_compression/import_etc2");
|
|
|
|
|
|
- if (driver == "OpenGL3" && !etc_supported) {
|
|
|
|
|
|
+ if (driver == "opengl3" && !etc_supported) {
|
|
return TTR("Target platform requires 'ETC' texture compression for OpenGL. Enable 'Import Etc' in Project Settings.");
|
|
return TTR("Target platform requires 'ETC' texture compression for OpenGL. Enable 'Import Etc' in Project Settings.");
|
|
- } else if (driver == "Vulkan" && !etc2_supported) {
|
|
|
|
|
|
+ } else if (driver == "vulkan" && !etc2_supported) {
|
|
// FIXME: Review if this is true for Vulkan.
|
|
// FIXME: Review if this is true for Vulkan.
|
|
return TTR("Target platform requires 'ETC2' texture compression for Vulkan. Enable 'Import Etc 2' in Project Settings.");
|
|
return TTR("Target platform requires 'ETC2' texture compression for Vulkan. Enable 'Import Etc 2' in Project Settings.");
|
|
}
|
|
}
|
|
@@ -1515,9 +1515,9 @@ String EditorExportPlatform::test_etc2_or_pvrtc() const {
|
|
// bool etc2_supported = ProjectSettings::get_singleton()->get("rendering/textures/vram_compression/import_etc2");
|
|
// bool etc2_supported = ProjectSettings::get_singleton()->get("rendering/textures/vram_compression/import_etc2");
|
|
// bool pvrtc_supported = ProjectSettings::get_singleton()->get("rendering/textures/vram_compression/import_pvrtc");
|
|
// bool pvrtc_supported = ProjectSettings::get_singleton()->get("rendering/textures/vram_compression/import_pvrtc");
|
|
|
|
|
|
- if (driver == "OpenGL3" && !pvrtc_supported) {
|
|
|
|
|
|
+ if (driver == "opengl3" && !pvrtc_supported) {
|
|
return TTR("Target platform requires 'PVRTC' texture compression for OpenGL. Enable 'Import Pvrtc' in Project Settings.");
|
|
return TTR("Target platform requires 'PVRTC' texture compression for OpenGL. Enable 'Import Pvrtc' in Project Settings.");
|
|
- } else if (driver == "Vulkan" && !etc2_supported && !pvrtc_supported) {
|
|
|
|
|
|
+ } else if (driver == "vulkan" && !etc2_supported && !pvrtc_supported) {
|
|
// FIXME: Review if this is true for Vulkan.
|
|
// FIXME: Review if this is true for Vulkan.
|
|
return TTR("Target platform requires 'ETC2' or 'PVRTC' texture compression for Vulkan. Enable 'Import Etc 2' or 'Import Pvrtc' in Project Settings.");
|
|
return TTR("Target platform requires 'ETC2' or 'PVRTC' texture compression for Vulkan. Enable 'Import Etc 2' or 'Import Pvrtc' in Project Settings.");
|
|
}
|
|
}
|