fix a couple typos in CubemapLayout (#19964)

# Objective

- Rob pointed out a couple typos in #19960 (i just did a copy paste, but
the original had an issue)

## Solution

- Fix
This commit is contained in:
atlv 2025-07-05 13:05:56 -04:00 committed by GitHub
parent 6ab8e0d9c7
commit 7aaf4bbd94
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -442,7 +442,7 @@ pub enum CubemapLayout {
/// layout in a vertical sequence
/// ```text
/// +x
/// -y
/// -x
/// +y
/// -y
/// -z
@ -451,7 +451,7 @@ pub enum CubemapLayout {
SequenceVertical = 2,
/// layout in a horizontal sequence
/// ```text
/// +x -y +y -y -z +z
/// +x -x +y -y -z +z
/// ```
SequenceHorizontal = 3,
}