Searched refs:screen (Results 1 - 25 of 211) sorted by relevance

123456789

/external/webkit/Tools/EWSTools/
H A Dboot.sh30 screen -c ~/tools/screen-config
/external/jmonkeyengine/engine/src/niftygui/com/jme3/cinematic/events/
H A DGuiTrack.java50 protected String screen; field in class:GuiTrack
56 public GuiTrack(Nifty nifty, String screen) { argument
57 this.screen = screen;
61 public GuiTrack(Nifty nifty, String screen, float initialDuration) { argument
63 this.screen = screen;
67 public GuiTrack(Nifty nifty, String screen, LoopMode loopMode) { argument
69 this.screen = screen;
73 GuiTrack(Nifty nifty, String screen, float initialDuration, LoopMode loopMode) argument
98 setScreen(String screen) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/nanox/
H A DSDL_nximage_c.h30 extern int NX_SetupImage (_THIS, SDL_Surface * screen) ;
31 extern void NX_DestroyImage (_THIS, SDL_Surface * screen) ;
32 extern int NX_ResizeImage (_THIS, SDL_Surface * screen, Uint32 flags) ;
/external/webkit/Source/WebCore/platform/haiku/
H A DScreenHaiku.cpp46 BScreen screen; local
47 // FIXME: We assume this screen is valid
48 return FloatRect(screen.Frame());
60 BScreen screen; local
61 // FIXME: We assume this screen is valid
62 color_space cs = screen.ColorSpace();
80 BScreen screen; local
81 // FIXME: We assume this screen is valid
82 return screen.ColorSpace() == B_MONOCHROME_1_BIT;
/external/qemu/distrib/sdl-1.2.15/test/
H A Dgraywin.c2 /* Simple program: Fill a colormap with gray and stripe it down the screen */
18 void DrawBox(SDL_Surface *screen, int X, int Y, int width, int height) argument
38 if (screen->format->BytesPerPixel==1)
44 color = SDL_MapRGB(screen->format, randc, randc, randc);
48 SDL_FillRect(screen, &area, color);
49 if ( screen->flags & SDL_DOUBLEBUF ) {
50 SDL_Flip(screen);
52 SDL_UpdateRects(screen, 1, &area);
56 void DrawBackground(SDL_Surface *screen) argument
68 if ( SDL_LockSurface(screen) <
107 SDL_Surface *screen; local
136 SDL_Surface *screen; local
[all...]
H A Dtestbitmap.c18 SDL_Surface *LoadXBM(SDL_Surface *screen, int w, int h, Uint8 *bits) argument
55 SDL_Surface *screen; local
99 if ( (screen=SDL_SetVideoMode(640,480,video_bpp,videoflags)) == NULL ) {
112 SDL_SetColors(screen, palette, 0, 256);
116 if ( SDL_LockSurface(screen) < 0 ) {
121 buffer=(Uint8 *)screen->pixels;
122 if (screen->format->BytesPerPixel!=2) {
123 for ( i=0; i<screen->h; ++i ) {
124 memset(buffer,(i*255)/screen->h, screen
[all...]
H A Dtestalpha.c2 /* Simple program: Fill a colormap with gray and stripe it down the screen,
3 Then move an alpha valued sprite around the screen.
22 /* Fill the screen with a gradient */
23 static void FillBackground(SDL_Surface *screen) argument
32 if ( SDL_LockSurface(screen) < 0 ) {
37 buffer=(Uint8 *)screen->pixels;
38 if (screen->format->BytesPerPixel!=2) {
39 for ( i=0; i<screen->h; ++i ) {
40 memset(buffer,(i*255)/screen->h, screen
153 FlashLight(SDL_Surface *screen, SDL_Surface *light, int x, int y) argument
181 LoadSprite(SDL_Surface *screen, char *file) argument
247 MoveSprite(SDL_Surface *screen, SDL_Surface *light) argument
306 WarpSprite(SDL_Surface *screen, int x, int y) argument
325 SDL_Surface *screen; local
[all...]
H A Dtestvidinfo.c46 int RunBlitTests(SDL_Surface *screen, SDL_Surface *bmp, int blitcount) argument
53 maxx = (int)screen->w - bmp->w + 1;
54 maxy = (int)screen->h - bmp->h + 1;
69 SDL_BlitSurface(bmp, NULL, screen, &dst);
71 SDL_Flip(screen);
77 int RunModeTests(SDL_Surface *screen) argument
92 /* First test fills and screen update speed */
100 SDL_FillRect(screen, NULL, SDL_MapRGB(screen->format, r, g, b));
101 SDL_Flip(screen);
351 SDL_Surface *screen; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/
H A DSDL_cursor_c.h29 extern void SDL_DrawCursor(SDL_Surface *screen);
30 extern void SDL_DrawCursorNoLock(SDL_Surface *screen);
31 extern void SDL_EraseCursor(SDL_Surface *screen);
32 extern void SDL_EraseCursorNoLock(SDL_Surface *screen);
33 extern void SDL_UpdateCursor(SDL_Surface *screen);
H A DSDL_cursor.c304 if (this->screen->pitch == 0) {
305 x += this->screen->offset / this->screen->format->BytesPerPixel;
306 y += this->screen->offset;
308 x += (this->screen->offset % this->screen->pitch) /
309 this->screen->format->BytesPerPixel;
310 y += (this->screen->offset / this->screen->pitch);
371 static void SDL_DrawCursorFast(SDL_Surface *screen, SDL_Rec argument
497 SDL_DrawCursorSlow(SDL_Surface *screen, SDL_Rect *area) argument
566 SDL_ConvertCursorSave(SDL_Surface *screen, int w, int h) argument
595 SDL_DrawCursorNoLock(SDL_Surface *screen) argument
640 SDL_DrawCursor(SDL_Surface *screen) argument
673 SDL_EraseCursorNoLock(SDL_Surface *screen) argument
714 SDL_EraseCursor(SDL_Surface *screen) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/x11/
H A DSDL_x11image_c.h26 extern int X11_SetupImage(_THIS, SDL_Surface *screen);
27 extern void X11_DestroyImage(_THIS, SDL_Surface *screen);
28 extern int X11_ResizeImage(_THIS, SDL_Surface *screen, Uint32 flags);
H A DSDL_x11image.c45 static void try_mitshm(_THIS, SDL_Surface *screen) argument
53 shminfo.shmid = shmget(IPC_PRIVATE, screen->h*screen->pitch,
76 screen->pixels = shminfo.shmaddr;
80 /* Various screen update functions available */
84 int X11_SetupImage(_THIS, SDL_Surface *screen) argument
87 try_mitshm(this, screen);
92 screen->w, screen->h);
97 screen
130 X11_DestroyImage(_THIS, SDL_Surface *screen) argument
181 X11_ResizeImage(_THIS, SDL_Surface *screen, Uint32 flags) argument
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
H A Dxme.h32 extern int XiGMiscQueryViews(Display *dpy, int screen,
34 extern int XiGMiscQueryResolutions(Display *dpy, int screen, int view,
37 extern void XiGMiscChangeResolution(Display *dpy, int screen, int view,
H A Dxf86dga.h106 int screen; member in struct:__anon10621
116 int screen; member in struct:__anon10622
126 int screen; member in struct:__anon10623
155 int screen,
161 int screen,
167 int screen
172 int screen
177 int screen,
185 int screen,
191 int screen,
[all...]
H A DpanoramiXext.h40 int screen; member in struct:__anon10609
42 int width; /* width of this screen */
43 int height; /* height of this screen */
/external/chromium/chrome/browser/ui/cocoa/
H A Dfullscreen_window.h15 // Initialize a FullscreenWindow for the given screen.
17 - (id)initForScreen:(NSScreen*)screen;
/external/chromium/chrome/browser/tab_contents/
H A Dweb_drag_source_win.cc20 gfx::Point* screen) {
23 screen->SetPoint(cursor_pos.x, cursor_pos.y);
61 gfx::Point screen; local
62 GetCursorPositions(source_wnd_, &client, &screen);
64 screen.x(), screen.y(),
84 gfx::Point screen; local
85 GetCursorPositions(source_wnd_, &client, &screen);
87 client.x(), client.y(), screen.x(), screen
19 GetCursorPositions(gfx::NativeWindow wnd, gfx::Point* client, gfx::Point* screen) argument
104 gfx::Point screen; local
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/ps2gs/
H A DSDL_gsmouse.c53 SDL_Surface *screen; local
70 screen = this->screen;
71 saved_pixels = screen->pixels;
72 screen->pixels = mapped_mem + screen->offset;
75 SDL_EraseCursorNoLock(screen);
92 if ( (SDL_cursorstate & CURSOR_VISIBLE) && screen->pixels ) {
93 SDL_DrawCursorNoLock(screen);
98 screen
[all...]
/external/jmonkeyengine/engine/src/test/jme3test/animation/
H A DSubtitleTrack.java19 public SubtitleTrack(Nifty nifty, String screen,float initialDuration, String text) { argument
20 super(nifty, screen, initialDuration);
27 nifty.getScreen(screen).findElementByName("text").getRenderer(TextRenderer.class).setText(text);
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Application/
H A Dmain.c18 SDL_Surface *screen; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
33 if (screen == NULL) {
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeLeopard/SDL Cocoa Application/
H A Dmain.c18 SDL_Surface *screen; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
33 if (screen == NULL) {
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Application/
H A Dmain.c18 SDL_Surface *screen; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
33 if (screen == NULL) {
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeSnowLeopard/SDL Cocoa Application/
H A Dmain.c18 SDL_Surface *screen; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
33 if (screen == NULL) {
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Application/
H A Dmain.c18 SDL_Surface *screen; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
33 if (screen == NULL) {
/external/qemu/distrib/sdl-1.2.15/Xcode/TemplatesForXcodeTiger/SDL Cocoa Application/
H A Dmain.c18 SDL_Surface *screen; local
32 screen=SDL_SetVideoMode(640,480, video_bpp, videoflags);
33 if (screen == NULL) {

Completed in 323 milliseconds

123456789