We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1780e8f commit 4beca78Copy full SHA for 4beca78
1 file changed
src/vga/mod.rs
@@ -1168,14 +1168,6 @@ impl Chunky4ColourLookup {
1168
}
1169
1170
1171
-
1172
- /// Turn a pair of chunky4 pixels (in a `u8`), into a pair of RGB pixels.
1173
- #[inline]
1174
- fn lookup(&self, pixel_pair: u8) -> RGBPair {
1175
- let index = usize::from(pixel_pair);
1176
- let raw = self.entries[index].load(Ordering::Relaxed);
1177
- RGBPair(raw)
1178
- }
1179
1180
1181
// -----------------------------------------------------------------------------
0 commit comments