mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-09 08:58:02 +02:00
python: Fix put/get_tile_raw bindings.
This commit is contained in:
parent
424dea98d4
commit
37336b7d9e
1 changed files with 2 additions and 2 deletions
|
|
@ -102,12 +102,12 @@
|
|||
void unmap( void );
|
||||
|
||||
void
|
||||
get_tile_raw(unsigned x, unsigned y, unsigned w, unsigned h, unsigned char *raw, unsigned stride) {
|
||||
get_tile_raw(unsigned x, unsigned y, unsigned w, unsigned h, char *raw, unsigned stride) {
|
||||
pipe_get_tile_raw($self, x, y, w, h, raw, stride);
|
||||
}
|
||||
|
||||
void
|
||||
put_tile_raw(unsigned x, unsigned y, unsigned w, unsigned h, const unsigned char *raw, unsigned stride) {
|
||||
put_tile_raw(unsigned x, unsigned y, unsigned w, unsigned h, const char *raw, unsigned stride) {
|
||||
pipe_put_tile_raw($self, x, y, w, h, raw, stride);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue