From 0026c3f62ae674f48e61b7a2c2bd91b589205a00 Mon Sep 17 00:00:00 2001 From: Jarrod Johnson Date: Thu, 14 May 2026 09:16:52 -0400 Subject: [PATCH] Fix pixel format to be RGBA actually --- confluent_client/confluent/vnc.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/confluent_client/confluent/vnc.py b/confluent_client/confluent/vnc.py index 62038427..8d12a24d 100644 --- a/confluent_client/confluent/vnc.py +++ b/confluent_client/confluent/vnc.py @@ -13,7 +13,7 @@ MYPIXFORMAT = bytearray([ 0, 255, # red max 0, 255, # green max 0, 255, # blue max - 16, 8, 0, # red shift, green shift, blue shift + 0, 8, 16, # red shift, green shift, blue shift 0, 0, 0 # padding ]) @@ -272,4 +272,4 @@ class VNCClient: return length async def close(self): self.writer.close() - await self.writer.wait_closed() \ No newline at end of file + await self.writer.wait_closed()