Lines Matching refs:bitmap
71 BBitmap *bitmap = bwin->GetBitmap(); in HAIKU_CreateWindowFramebuffer() local
73 if(bitmap) { in HAIKU_CreateWindowFramebuffer()
74 delete bitmap; in HAIKU_CreateWindowFramebuffer()
76 bitmap = new BBitmap(bwin->Bounds(), (color_space)bmode.space, in HAIKU_CreateWindowFramebuffer()
80 if(bitmap->InitCheck() != B_OK) { in HAIKU_CreateWindowFramebuffer()
81 delete bitmap; in HAIKU_CreateWindowFramebuffer()
86 bwin->SetBitmap(bitmap); in HAIKU_CreateWindowFramebuffer()
89 *pixels = bitmap->Bits(); in HAIKU_CreateWindowFramebuffer()
92 *pitch = bitmap->BytesPerRow(); in HAIKU_CreateWindowFramebuffer()
132 BBitmap *bitmap = NULL; in HAIKU_DrawThread() local
133 bitmap = bwin->GetBitmap(); in HAIKU_DrawThread()
134 int32 windowPitch = bitmap->BytesPerRow(); in HAIKU_DrawThread()
154 windowpx = (uint8*)bitmap->Bits() + in HAIKU_DrawThread()
190 BBitmap *bitmap = bwin->GetBitmap(); in HAIKU_DestroyWindowFramebuffer() local
191 delete bitmap; in HAIKU_DestroyWindowFramebuffer()