Skip to content

Commit

Permalink
#4111 use the stronger 'memorytype' where possible
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Feb 17, 2025
1 parent e9a2b3a commit 8c76df9
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 56 deletions.
8 changes: 4 additions & 4 deletions xpra/codecs/argb/argb.pxd
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
# Xpra is released under the terms of the GNU GPL v2, or, at your option, any
# later version. See the file COPYING for details.

cdef argbdata_to_rgba(const unsigned int* argb, const int argb_len) #pylint: disable=syntax-error
cdef argbdata_to_rgb(const unsigned int* argb, const int argb_len)
cdef bgradata_to_rgb(const unsigned int* bgra, const int bgra_len)
cdef bgradata_to_rgba(const unsigned int* bgra, const int bgra_len)
cdef memoryview argbdata_to_rgba(const unsigned int* argb, const int argb_len) #pylint: disable=syntax-error
cdef memoryview argbdata_to_rgb(const unsigned int* argb, const int argb_len)
cdef memoryview bgradata_to_rgb(const unsigned int* bgra, const int bgra_len)
cdef memoryview bgradata_to_rgba(const unsigned int* bgra, const int bgra_len)

cdef void show_plane_range(name, plane: Buffer, int width, int stride, int height)
Loading

0 comments on commit 8c76df9

Please sign in to comment.