Closed
Bug 1682146
Opened 5 years ago
Closed 5 years ago
ClearCache bitflags are all identical
Categories
(Core :: Graphics: WebRender, defect, P3)
Core
Graphics: WebRender
Tracking
()
RESOLVED
FIXED
85 Branch
Tracking | Status | |
---|---|---|
firefox85 | --- | fixed |
People
(Reporter: aosmond, Assigned: aosmond)
Details
Attachments
(1 file)
The bitflags all use the same bit here:
as 0b1, 0b01, 0b001, etc are equivalent. It should be 0b1, 0b10, 0b100, etc.
This doesn't appear to cause any actual problems since we appear to only clear everything in the cache anyways via ClearCache::all().
Assignee | ||
Comment 1•5 years ago
|
||
This should not have a functional change because today nothing uses the
individual flags and instead always uses ClearCache::all().
Updated•5 years ago
|
Assignee: nobody → aosmond
Status: NEW → ASSIGNED
Pushed by aosmond@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/3c36156a38e3
Fix how ClearCache bits in WebRender were all the same. r=jrmuizel
Comment 3•5 years ago
|
||
bugherder |
Status: ASSIGNED → RESOLVED
Closed: 5 years ago
status-firefox85:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 85 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•