Update Display.fill_row() to accept all WriteableBuffers

This commit is contained in:
James Carr 2021-09-19 17:55:52 +01:00
parent e72c1fd457
commit f5c015285f
No known key found for this signature in database
GPG Key ID: 04CEE584D0B924E0
1 changed files with 0 additions and 3 deletions

View File

@ -467,9 +467,6 @@ STATIC mp_obj_t displayio_display_obj_fill_row(size_t n_args, const mp_obj_t *po
mp_buffer_info_t bufinfo;
mp_get_buffer_raise(result, &bufinfo, MP_BUFFER_WRITE);
if (bufinfo.typecode != BYTEARRAY_TYPECODE) {
mp_raise_ValueError(translate("Buffer is not a bytearray."));
}
if (self->core.colorspace.depth != 16) {
mp_raise_ValueError(translate("Display must have a 16 bit colorspace."));
}