Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow default case at the top of a switch scope in shaders #103177

Merged
merged 1 commit into from
Mar 7, 2025

Conversation

Murrent
Copy link
Contributor

@Murrent Murrent commented Feb 22, 2025

Fixes #103174

@Murrent Murrent requested a review from a team as a code owner February 22, 2025 16:19
@clayjohn
Copy link
Member

clayjohn commented Feb 22, 2025

This is changing code that hasn't changed in 3 years. And the error has been around since switch statements were added 6 years ago (in #31596). Therefore, I don't think it is responsible for the change in behaviour between 4.3 and 4.4. I definitely wouldn't remove an error check that has been around for 3 years at this point in the 4.x dev cycle without a very compelling reason.

@Murrent
Copy link
Contributor Author

Murrent commented Feb 22, 2025

This is changing code that hasn't changed in 3 years. And the error has been around since switch statements were added 6 years ago (in #31596). Therefore, I don't think it is responsible for the change in behaviour between 4.3 and 4.4. I definitely wouldn't remove an error check that has been around for 3 years at this point in the 4.x dev cycle without a very compelling reason.

The code for the error has been there for a long time, but for some unknown reason the error didn't hit in previous versions. And default case is allowed at the top of switch scopes in GLSL. Right now it is a breaking change in behavior between 4.3 and 4.4 to the user, which I'm trying to fix. But yeah, I get your concern for potential side effects.

@AThousandShips AThousandShips changed the title Allowing default case at the top of a switch scope in shaders Allow default case at the top of a switch scope in shaders Feb 22, 2025
@AThousandShips AThousandShips added this to the 4.x milestone Feb 22, 2025
@Murrent
Copy link
Contributor Author

Murrent commented Feb 22, 2025

Also, one good reason why this change is needed is that people who rely on large external GLSL libraries might have to make a lot of changes to the libraries since the compiler is not fully compatible with GLSL. This is the problem I have with my own project.

@clayjohn
Copy link
Member

This is changing code that hasn't changed in 3 years. And the error has been around since switch statements were added 6 years ago (in #31596). Therefore, I don't think it is responsible for the change in behaviour between 4.3 and 4.4. I definitely wouldn't remove an error check that has been around for 3 years at this point in the 4.x dev cycle without a very compelling reason.

The code for the error has been there for a long time, but for some unknown reason the error didn't hit in previous versions. And default case is allowed at the top of switch scopes in GLSL. Right now it is a breaking change in behavior between 4.3 and 4.4 to the user, which I'm trying to fix. But yeah, I get your concern for potential side effects.

The fix should target the code that changed instead of deleting the error check altogether.

@Murrent
Copy link
Contributor Author

Murrent commented Feb 24, 2025

I found that with this fix, if you have:

void test() {
	switch (0) {
		default:
			break;
		default:
			break;
		case 0:
			break;
	};
}

We get an error as expected, but if we have:

void test() {
	switch (0) {
		default:
			break;
		case 0:
			break;
		default:
			break;
	};
}

We don't get an error and the editor hangs,

@Murrent
Copy link
Contributor Author

Murrent commented Feb 24, 2025

I found that with this fix, if you have:

[...]

We get an error as expected, but if we have:

[...]

We don't get an error and the editor hangs,

Now this is fixed.

@akien-mga akien-mga requested a review from a team February 25, 2025 10:57
Comment on lines 16317 to 16319
msgid "Cases must be defined before default case."
msgstr "يجب تحديد الحالات قبل الحالة الافتراضية."

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's correct that those translations aren't needed anymore, but we don't modify translations directly in this repo, as those are just copies of what's being translated on Weblate: https://hosted.weblate.org/projects/godot-engine/godot/

They will be removed automatically next time I sync the translations, so for this commit you can undo the .po changes to reduce the diff.

@akien-mga
Copy link
Member

akien-mga commented Feb 25, 2025

Looks good to me! Could you squash the commits? See PR workflow for instructions.

If you're not familiar with that workflow or find it overwhelming, just tell me and I can squash the commits myself.

@akien-mga akien-mga modified the milestones: 4.x, 4.4 Feb 25, 2025
@akien-mga akien-mga changed the title Allow default case at the top of a switch scope in shaders Allow default case at the top of a switch scope in shaders Feb 25, 2025
Revert "Removed translations of unused error message"

This reverts commit 6dbc75e.

Variable name change

Detecting multiple default cases in shaders

Removed translations of unused error message

Allowing default case at top of scope in switch statement in shaders
@Murrent Murrent force-pushed the shader_default_at_top branch from 41c3393 to 4f46ecc Compare February 25, 2025 20:00
@Murrent
Copy link
Contributor Author

Murrent commented Feb 25, 2025

I think I got it, never squashed before 🤞

@akien-mga akien-mga modified the milestones: 4.4, 4.5 Feb 25, 2025
@akien-mga akien-mga added enhancement and removed bug labels Feb 25, 2025
Copy link
Member

@akien-mga akien-mga left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks good to me to merge for 4.5, as I agree it makes sense to reduce differences with GLSL for portability, and the fix seems simple - actually @Chaosus independently came up with the same change in #103288.

It's not critical for 4.4 though as pointed out in #103174 (comment), since in this release candidate phase we only merge fixes to showstopping regressions, and this one is more a bug that morphed into expected behavior.

@Repiteo Repiteo merged commit 7459a03 into godotengine:master Mar 7, 2025
20 checks passed
@Repiteo
Copy link
Contributor

Repiteo commented Mar 7, 2025

Thanks! Congratulations on your first merged contribution! 🎉

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Default case in .gdshaderinc must be defined at end of scope, but not in 4.3
6 participants