HomeSort by relevance Sort by last modified time
    Searched refs:screen (Results 276 - 300 of 1413) sorted by null

<<11121314151617181920>>

  /external/mesa3d/src/gallium/drivers/r300/
r300_screen_buffer.h 44 struct pipe_resource *r300_buffer_create(struct pipe_screen *screen,
r300_texture.h 55 void r300_texture_setup_format_state(struct r300_screen *screen,
63 boolean r300_resource_get_handle(struct pipe_screen* screen,
68 r300_texture_from_handle(struct pipe_screen* screen,
73 r300_texture_create(struct pipe_screen* screen,
  /external/mesa3d/src/gallium/include/pipe/
p_screen.h 31 * Screen, Adapter or GPU
62 * Gallium screen/adapter context. Basically everything
175 void (*flush_frontbuffer)( struct pipe_screen *screen,
183 void (*fence_reference)( struct pipe_screen *screen,
190 boolean (*fence_signalled)( struct pipe_screen *screen,
197 boolean (*fence_finish)( struct pipe_screen *screen,
  /external/mesa3d/src/mesa/state_tracker/
st_cb_flush.c 62 * Tell the screen to display the front color buffer on-screen.
100 st->pipe->screen->fence_finish(st->pipe->screen, fence,
102 st->pipe->screen->fence_reference(st->pipe->screen, &fence, NULL);
  /external/skia/include/views/
SkOSWindow_SDL.h 20 SkOSWindow(void* screen);
  /external/chromium_org/third_party/mesa/src/include/GL/internal/
dri_interface.h 117 * The first set of extension are the screen extensions, returned by
200 int (*getDrawableMSC)(__DRIscreen *screen, __DRIdrawable *drawable,
394 * \param x X offset of the drawable within the screen (used in the
396 * \param y Y offset of the drawable within the screen.
553 __DRIscreen *(*createNewScreen)(int screen, int fd,
559 void (*destroyScreen)(__DRIscreen *screen);
561 const __DRIextension **(*getExtensions)(__DRIscreen *screen);
570 __DRIdrawable *(*createNewDrawable)(__DRIscreen *screen,
580 __DRIcontext *(*createNewContext)(__DRIscreen *screen,
642 * This extension provides alternative screen, drawable and contex
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/targets/graw-gdi/
graw_gdi.c 68 struct pipe_screen *screen = NULL; local
82 screen = sw_screen_create(winsys);
83 if (screen == NULL)
121 return debug_screen_wrap(screen);
127 if (screen)
128 screen->destroy(screen);
  /external/mesa3d/include/GL/internal/
dri_interface.h 117 * The first set of extension are the screen extensions, returned by
200 int (*getDrawableMSC)(__DRIscreen *screen, __DRIdrawable *drawable,
394 * \param x X offset of the drawable within the screen (used in the
396 * \param y Y offset of the drawable within the screen.
553 __DRIscreen *(*createNewScreen)(int screen, int fd,
559 void (*destroyScreen)(__DRIscreen *screen);
561 const __DRIextension **(*getExtensions)(__DRIscreen *screen);
570 __DRIdrawable *(*createNewDrawable)(__DRIscreen *screen,
580 __DRIcontext *(*createNewContext)(__DRIscreen *screen,
642 * This extension provides alternative screen, drawable and contex
    [all...]
  /external/mesa3d/src/gallium/targets/graw-gdi/
graw_gdi.c 68 struct pipe_screen *screen = NULL; local
82 screen = sw_screen_create(winsys);
83 if (screen == NULL)
121 return debug_screen_wrap(screen);
127 if (screen)
128 screen->destroy(screen);
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/dri/sw/
drisw.c 107 struct dri_screen *screen = dri_screen(drawable->sPriv); local
112 screen->base.screen->flush_frontbuffer(screen->base.screen, ptex, 0, 0, drawable);
189 struct dri_screen *screen = dri_screen(drawable->sPriv); local
208 templ.target = screen->target;
236 screen->base.screen->resource_create(screen->base.screen, &templ)
298 struct dri_screen *screen; local
    [all...]
  /external/mesa3d/src/gallium/state_trackers/dri/sw/
drisw.c 107 struct dri_screen *screen = dri_screen(drawable->sPriv); local
112 screen->base.screen->flush_frontbuffer(screen->base.screen, ptex, 0, 0, drawable);
189 struct dri_screen *screen = dri_screen(drawable->sPriv); local
208 templ.target = screen->target;
236 screen->base.screen->resource_create(screen->base.screen, &templ)
298 struct dri_screen *screen; local
    [all...]
  /external/qemu/distrib/sdl-1.2.15/test/
testwm.c 25 SDL_Surface *screen; local
30 screen = SDL_SetVideoMode(w, h, video_bpp, video_flags);
31 if ( screen == NULL ) {
36 printf("Running in %s mode\n", screen->flags & SDL_FULLSCREEN ?
45 SDL_SetColors(screen, palette, 0, 256);
46 if ( SDL_LockSurface(screen) < 0 ) {
51 buffer = (Uint8 *)screen->pixels;
52 for ( i=0; i<screen->h; ++i ) {
53 memset(buffer,(i*255)/screen->h,
54 screen->w*screen->format->BytesPerPixel)
124 SDL_Surface *screen; local
    [all...]
testpalette.c 20 /* screen size */
71 static SDL_Surface *make_bg(SDL_Surface *screen, int startcol)
74 SDL_Surface *bg = SDL_CreateRGBSurface(SDL_SWSURFACE, screen->w, screen->h,
79 /* set the palette to the logical screen palette so that blits
81 SDL_SetColors(bg, screen->format->palette->colors, 0, 256);
134 SDL_Surface *screen; local
170 if((screen = SDL_SetVideoMode(SCRW, SCRH, 8, vidflags | SDL_HWPALETTE)) == NULL) {
189 * First set the physical screen palette to black, so the user won't
190 * see our initial drawing on the screen
    [all...]
testjoystick.c 15 SDL_Surface *screen; local
23 screen = SDL_SetVideoMode(SCREEN_WIDTH, SCREEN_HEIGHT, 16, 0);
24 if ( screen == NULL ) {
106 SDL_FillRect(screen, &area, 0xFFFF);
108 SDL_FillRect(screen, &area, 0x0000);
110 SDL_UpdateRects(screen, 1, &area);
114 SDL_FillRect(screen, &axis_area[draw], 0x0000);
140 SDL_FillRect(screen, &axis_area[draw], 0xFFFF);
142 SDL_UpdateRects(screen, 2, axis_area);
  /external/chromium_org/third_party/mesa/src/src/glx/
XF86dri.c 146 XF86DRIQueryDirectRenderingCapable(Display * dpy, int screen,
160 req->screen = screen;
175 XF86DRIOpenConnection(Display * dpy, int screen, drm_handle_t * hSAREA,
189 req->screen = screen;
223 XF86DRIAuthConnection(Display * dpy, int screen, drm_magic_t magic)
236 req->screen = screen;
252 XF86DRICloseConnection(Display * dpy, int screen)
    [all...]
  /external/mesa3d/src/glx/
XF86dri.c 146 XF86DRIQueryDirectRenderingCapable(Display * dpy, int screen,
160 req->screen = screen;
175 XF86DRIOpenConnection(Display * dpy, int screen, drm_handle_t * hSAREA,
189 req->screen = screen;
223 XF86DRIAuthConnection(Display * dpy, int screen, drm_magic_t magic)
236 req->screen = screen;
252 XF86DRICloseConnection(Display * dpy, int screen)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
sp_texture.c 54 softpipe_resource_layout(struct pipe_screen *screen,
96 softpipe_displaytarget_layout(struct pipe_screen *screen,
99 struct sw_winsys *winsys = softpipe_screen(screen)->winsys;
119 softpipe_resource_create(struct pipe_screen *screen,
130 spr->base.screen = screen;
139 if (!softpipe_displaytarget_layout(screen, spr))
143 if (!softpipe_resource_layout(screen, spr))
159 struct softpipe_screen *screen = softpipe_screen(pscreen); local
164 struct sw_winsys *winsys = screen->winsys
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/common/
dri_util.c 35 * screen initialization, context creation, context binding, DRM setup, etc.
58 /** \name Screen handling functions */
122 * Destroy the per-screen private information.
161 dri2CreateContextAttribs(__DRIscreen *screen, int api,
179 if (!(screen->api_mask & (1 << api))) {
283 context->driScreenPriv = screen;
299 dri2CreateNewContextForAPI(__DRIscreen *screen, int api,
305 return dri2CreateContextAttribs(screen, api, config, shared, 0, NULL,
310 dri2CreateNewContext(__DRIscreen *screen, const __DRIconfig *config,
313 return dri2CreateNewContextForAPI(screen, __DRI_API_OPENGL
    [all...]
  /external/mesa3d/src/gallium/drivers/softpipe/
sp_texture.c 54 softpipe_resource_layout(struct pipe_screen *screen,
96 softpipe_displaytarget_layout(struct pipe_screen *screen,
99 struct sw_winsys *winsys = softpipe_screen(screen)->winsys;
119 softpipe_resource_create(struct pipe_screen *screen,
130 spr->base.screen = screen;
139 if (!softpipe_displaytarget_layout(screen, spr))
143 if (!softpipe_resource_layout(screen, spr))
159 struct softpipe_screen *screen = softpipe_screen(pscreen); local
164 struct sw_winsys *winsys = screen->winsys
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/common/
dri_util.c 35 * screen initialization, context creation, context binding, DRM setup, etc.
58 /** \name Screen handling functions */
122 * Destroy the per-screen private information.
161 dri2CreateContextAttribs(__DRIscreen *screen, int api,
179 if (!(screen->api_mask & (1 << api))) {
283 context->driScreenPriv = screen;
299 dri2CreateNewContextForAPI(__DRIscreen *screen, int api,
305 return dri2CreateContextAttribs(screen, api, config, shared, 0, NULL,
310 dri2CreateNewContext(__DRIscreen *screen, const __DRIconfig *config,
313 return dri2CreateNewContextForAPI(screen, __DRI_API_OPENGL
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
appledri.c 182 XAppleDRIQueryDirectRenderingCapable(dpy, screen, isCapable)
184 int screen;
198 req->screen = screen;
213 XAppleDRIAuthConnection(dpy, screen, magic)
215 int screen;
229 req->screen = screen;
245 XAppleDRICreateSurface(dpy, screen, drawable, client_id, key, uid)
247 int screen;
    [all...]
  /external/mesa3d/src/glx/apple/
appledri.c 182 XAppleDRIQueryDirectRenderingCapable(dpy, screen, isCapable)
184 int screen;
198 req->screen = screen;
213 XAppleDRIAuthConnection(dpy, screen, magic)
215 int screen;
229 req->screen = screen;
245 XAppleDRICreateSurface(dpy, screen, drawable, client_id, key, uid)
247 int screen;
    [all...]
  /external/chromium_org/third_party/mesa/src/include/EGL/
eglmesaext.h 56 EGLAPI EGLBoolean EGLAPIENTRY eglChooseModeMESA(EGLDisplay dpy, EGLScreenMESA screen, const EGLint *attrib_list, EGLModeMESA *modes, EGLint modes_size, EGLint *num_modes);
57 EGLAPI EGLBoolean EGLAPIENTRY eglGetModesMESA(EGLDisplay dpy, EGLScreenMESA screen, EGLModeMESA *modes, EGLint modes_size, EGLint *num_modes);
61 EGLAPI EGLBoolean EGLAPIENTRY eglShowScreenSurfaceMESA(EGLDisplay dpy, EGLint screen, EGLSurface surface, EGLModeMESA mode);
62 EGLAPI EGLBoolean EGLAPIENTRY eglScreenPositionMESA(EGLDisplay dpy, EGLScreenMESA screen, EGLint x, EGLint y);
63 EGLAPI EGLBoolean EGLAPIENTRY eglQueryScreenMESA(EGLDisplay dpy, EGLScreenMESA screen, EGLint attribute, EGLint *value);
64 EGLAPI EGLBoolean EGLAPIENTRY eglQueryScreenSurfaceMESA(EGLDisplay dpy, EGLScreenMESA screen, EGLSurface *surface);
65 EGLAPI EGLBoolean EGLAPIENTRY eglQueryScreenModeMESA(EGLDisplay dpy, EGLScreenMESA screen, EGLModeMESA *mode);
69 typedef EGLBoolean (EGLAPIENTRYP PFNEGLCHOOSEMODEMESA) (EGLDisplay dpy, EGLScreenMESA screen, const EGLint *attrib_list, EGLModeMESA *modes, EGLint modes_size, EGLint *num_modes);
70 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETMODESMESA) (EGLDisplay dpy, EGLScreenMESA screen, EGLModeMESA *modes, EGLint modes_size, EGLint *num_modes);
74 typedef EGLBoolean (EGLAPIENTRYP PFNEGLSHOWSCREENSURFACEMESA) (EGLDisplay dpy, EGLint screen, EGLSurface surface, EGLModeMESA mode)
    [all...]
  /external/mesa3d/include/EGL/
eglmesaext.h 56 EGLAPI EGLBoolean EGLAPIENTRY eglChooseModeMESA(EGLDisplay dpy, EGLScreenMESA screen, const EGLint *attrib_list, EGLModeMESA *modes, EGLint modes_size, EGLint *num_modes);
57 EGLAPI EGLBoolean EGLAPIENTRY eglGetModesMESA(EGLDisplay dpy, EGLScreenMESA screen, EGLModeMESA *modes, EGLint modes_size, EGLint *num_modes);
61 EGLAPI EGLBoolean EGLAPIENTRY eglShowScreenSurfaceMESA(EGLDisplay dpy, EGLint screen, EGLSurface surface, EGLModeMESA mode);
62 EGLAPI EGLBoolean EGLAPIENTRY eglScreenPositionMESA(EGLDisplay dpy, EGLScreenMESA screen, EGLint x, EGLint y);
63 EGLAPI EGLBoolean EGLAPIENTRY eglQueryScreenMESA(EGLDisplay dpy, EGLScreenMESA screen, EGLint attribute, EGLint *value);
64 EGLAPI EGLBoolean EGLAPIENTRY eglQueryScreenSurfaceMESA(EGLDisplay dpy, EGLScreenMESA screen, EGLSurface *surface);
65 EGLAPI EGLBoolean EGLAPIENTRY eglQueryScreenModeMESA(EGLDisplay dpy, EGLScreenMESA screen, EGLModeMESA *mode);
69 typedef EGLBoolean (EGLAPIENTRYP PFNEGLCHOOSEMODEMESA) (EGLDisplay dpy, EGLScreenMESA screen, const EGLint *attrib_list, EGLModeMESA *modes, EGLint modes_size, EGLint *num_modes);
70 typedef EGLBoolean (EGLAPIENTRYP PFNEGLGETMODESMESA) (EGLDisplay dpy, EGLScreenMESA screen, EGLModeMESA *modes, EGLint modes_size, EGLint *num_modes);
74 typedef EGLBoolean (EGLAPIENTRYP PFNEGLSHOWSCREENSURFACEMESA) (EGLDisplay dpy, EGLint screen, EGLSurface surface, EGLModeMESA mode)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_ph_modes.c 242 int ph_EnterFullScreen(_THIS, SDL_Surface* screen, int fmode)
252 if (screen->flags & SDL_ANYFORMAT)
254 if ((mode = get_mode_any_format(screen->w, screen->h, screen->format->BitsPerPixel)) == 0)
262 if ((mode = ph_GetVideoMode(screen->w, screen->h, screen->format->BitsPerPixel)) == 0)
272 if (mode_info.height != screen->h)
274 if ((mode_info.height==480) && (screen->h==400)
    [all...]

Completed in 2300 milliseconds

<<11121314151617181920>>