X-Git-Url: https://git.ayoreis.com/hackapet/Adafruit_Blinka_Displayio.git/blobdiff_plain/251456619adbabdde68308bebb600bfa392c05c6..fd69c0e2397b5665769baceabf902fea01b81008:/displayio/_palette.py diff --git a/displayio/_palette.py b/displayio/_palette.py index c00d454..a017254 100644 --- a/displayio/_palette.py +++ b/displayio/_palette.py @@ -98,21 +98,23 @@ class Palette: self._colors[palette_index].transparent = False self._needs_refresh = True + """ def _get_palette(self): - """Generate a palette for use with PIL""" + # Generate a palette for use with PIL palette = [] for color in self._colors: palette += color.rgba()[0:3] return palette def _get_alpha_palette(self): - """Generate an alpha channel palette with white being - opaque and black being transparent""" + # Generate an alpha channel palette with white being + # opaque and black being transparent palette = [] for color in self._colors: for _ in range(3): palette += [0 if color.transparent else 0xFF] return palette + """ def _get_color( self,