From 8c4d07ba92e3293e4b406c0cef20be8ddd77c9ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20=C3=85dahl?= Date: Thu, 28 Nov 2019 11:19:27 +0100 Subject: [PATCH] HACKING.md: Update sample code to use paint context https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/827 --- HACKING.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/HACKING.md b/HACKING.md index 05176c45f..d1e23e03f 100644 --- a/HACKING.md +++ b/HACKING.md @@ -163,11 +163,17 @@ you to inherit from a type to use it, you can do so: return [100, 100]; } - vfunc_paint() { + vfunc_paint(paintContext) { + let framebuffer = paintContext.get_framebuffer(); + let coglContext = framebuffer.get_context(); let alloc = this.get_allocation_box(); - Cogl.set_source_color4ub(255, 0, 0, 255); - Cogl.rectangle(alloc.x1, alloc.y1, - alloc.x2, alloc.y2); + + let pipeline = new Cogl.Pipeline(coglContext); + pipeline.set_color4ub(255, 0, 0, 255); + + framebuffer.draw_rectangle(pipeline, + alloc.x1, alloc.y1, + alloc.x2, alloc.y2); } }); ```