How to add a background to a watchface

Hello,

I am trying to adapt my forerunner 945 watchface to the forerunner 965.

Before, I was doing this to add the background :

function initialize() {
    WatchFace.initialize();

    background = new WatchUi.Bitmap({
        :rezId=>Rez.Drawables.totoro,
        :locX=>0,
        :locY=>0
    });
}
function onUpdate(dc) {
    dc.clearClip();
    
    // Background
    background.draw(dc);
    background.setLocation(0, 0);
}
It was working fine withe the 945, but now, with the 965, it displays nothing...
Can you help me figure out why ?
Thank you