OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:bbitmap
(Results
1 - 3
of
3
) sorted by null
/external/qemu/distrib/sdl-1.2.15/src/video/bwindow/
SDL_sysyuv.cc
41
BBitmap
* BE_GetOverlayBitmap(BRect bounds, color_space cs) {
42
BBitmap
*
bbitmap
;
local
43
bbitmap
= new
BBitmap
(bounds,B_BITMAP_WILL_OVERLAY,cs);
44
if (!
bbitmap
||
bbitmap
->InitCheck() != B_OK) {
45
delete
bbitmap
;
49
bbitmap
->GetOverlayRestrictions(&r);
56
delete
bbitmap
;
132
BBitmap *
bbitmap
;
local
[
all
...]
SDL_sysyuv.h
60
BBitmap
*
bbitmap
;
member in struct:private_yuvhwdata
64
extern
BBitmap
* BE_GetOverlayBitmap(BRect bounds, color_space cs);
SDL_sysvideo.cc
502
BBitmap
*
bbitmap
;
local
552
/* Create the
BBitmap
framebuffer */
556
bbitmap
= new
BBitmap
(bounds, bscreen.ColorSpace());
557
if ( !
bbitmap
->IsValid() ) {
559
delete
bbitmap
;
562
current->pitch =
bbitmap
->BytesPerRow();
563
current->pixels = (void *)
bbitmap
->Bits();
564
SDL_Win->SetBitmap(
bbitmap
);
[
all
...]
Completed in 156 milliseconds