- Hi together,
I have response from users with the new Venu2 Plus.
Some elements are missing on my watchface. I cant reproduce this with simulator. The issue causes on a Venu2 and PLUS with new bufferedBitmap API.
I find out, that all pictures (jpg's and png's) are missing, witch I have draw on a full palette buffered bitmap.
The buffered bitmap is created with the new API:
PictureBuffer = Gfx.createBufferedBitmap({ :width=> VA_Width, :height=>VA_Height }); PictureBuffer = PictureBuffer.get(); PictureDc = PictureBuffer.getDc();
the pictures are draw in the buffered bitmap:
BackgroundPicture = Ui.loadResource(Rez.Drawables.EarthNight) PictureDC.drawBitmap(73, 50, BackgroundPicture);
I draw the buffered bitmap later to dc:
dc.drawBitmap(0, 0, PictureBuffer);
All other elements from the buffered bitmap are shows correct, only the pictures are missing.
Have anybody the same problem on a Venu2 series?
It seems a firmware bug?
best regards
2aCD