After initializing PyGame with
flags = pygame.FULLSCREEN | pygame.NOFRAME | pygame.DOUBLEBUF | pygame.HWSURFACE
width = 0
height = 0 # fullscreeen
screen = pygame.display.set_mode( ( width, height ), flags )
I get the color frame from the RealSense camera with
frames = pipeline.wait_for_frames()
colorFrame = frames.get_color_frame()
But how can this frame be drawn on screen?