You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
is wrong because masks should be 0x01, 0x02, 0x04, 0x08, 0x10, ... instead of using indexes. This prevented us from migrating to feature bits for these features.
If we use these, there may be sideffects. Need to update the data type and validate if there are any sideffects in code (that thinks these are indexes instead of bitmasks).
The text was updated successfully, but these errors were encountered:
bzbarsky-apple
changed the title
Content Launcer feature map shows up as indexes instead of bitmask
Content Launcher feature map shows up as indexes instead of bitmask
May 14, 2024
We should also look into ZAP have an upgrade mechanism where things like this can be fixed. The latest ZAP can have upgrade rules to fix old .zap files opened with latest GSDK.
Definition of
is wrong because masks should be
0x01, 0x02, 0x04, 0x08, 0x10, ...
instead of using indexes. This prevented us from migrating to feature bits for these features.If we use these, there may be sideffects. Need to update the data type and validate if there are any sideffects in code (that thinks these are indexes instead of bitmasks).
The text was updated successfully, but these errors were encountered: