Changeset 283484 in webkit
- Timestamp:
- Oct 3, 2021, 4:09:02 PM (5 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
Modules/webxr/WebXRSession.h (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r283483 r283484 1 2021-10-03 Sam Weinig <weinig@apple.com> 2 3 WebXRSession's m_environmentBlendMode and m_interactionMode are never initialized 4 https://bugs.webkit.org/show_bug.cgi?id=231144 5 6 Reviewed by Dean Jackson. 7 8 The m_environmentBlendMode and m_interactionMode members of WebXRSession were 9 not being initialized to anything and therefor were giving random data. This 10 is not really testable, as the result is just that the tests no longer flake. 11 12 * Modules/webxr/WebXRSession.h: 13 1 14 2021-10-03 David Kilzer <ddkilzer@apple.com> 2 15 -
trunk/Source/WebCore/Modules/webxr/WebXRSession.h
r280307 r283484 127 127 void applyPendingRenderState(); 128 128 129 XREnvironmentBlendMode m_environmentBlendMode ;130 XRInteractionMode m_interactionMode ;129 XREnvironmentBlendMode m_environmentBlendMode { XREnvironmentBlendMode::Opaque }; 130 XRInteractionMode m_interactionMode { XRInteractionMode::WorldSpace }; 131 131 XRVisibilityState m_visibilityState { XRVisibilityState::Visible }; 132 132 UniqueRef<WebXRInputSourceArray> m_inputSources;
Note:
See TracChangeset
for help on using the changeset viewer.