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); } }); ```