HomeSort by relevance Sort by last modified time
    Searched refs:stw_dev (Results 1 - 10 of 10) sorted by null

  /external/mesa3d/src/gallium/state_trackers/wgl/
stw_ext_gallium.c 38 return stw_dev ? stw_dev->screen : NULL;
46 if(!stw_dev)
49 return stw_dev->screen->context_create( stw_dev->screen, NULL );
stw_device.c 45 struct stw_device *stw_dev = NULL; variable in typeref:struct:stw_device
74 assert(!stw_dev);
78 stw_dev = &stw_dev_storage;
79 memset(stw_dev, 0, sizeof(*stw_dev));
82 stw_dev->memdbg_no = debug_memory_begin();
85 stw_dev->stw_winsys = stw_winsys;
87 stw_dev->stapi = stw_st_create_api();
88 stw_dev->smapi = CALLOC_STRUCT(st_manager);
89 if (!stw_dev->stapi || !stw_dev->smapi
    [all...]
stw_framebuffer.c 47 * stw_dev::fb_mutex global lock.
55 for (fb = stw_dev->fb_head; fb != NULL; fb = fb->next)
66 * Destroy this framebuffer. Both stw_dev::fb_mutex and stw_framebuffer::mutex
83 link = &stw_dev->fb_head;
91 stw_dev->stw_winsys->shared_surface_close(stw_dev->screen, fb->shared_surface);
206 if (nCode < 0 || !stw_dev)
228 pipe_mutex_lock( stw_dev->fb_mutex );
232 pipe_mutex_unlock( stw_dev->fb_mutex );
269 fb->iDisplayablePixelFormat = iPixelFormat <= stw_dev->pixelformat_count ? iPixelFormat : 1
    [all...]
stw_context.c 56 st = (stw_dev) ? stw_dev->stapi->get_current(stw_dev->stapi) : NULL;
71 if (!stw_dev)
74 pipe_mutex_lock( stw_dev->ctx_mutex );
87 pipe_mutex_unlock( stw_dev->ctx_mutex );
101 if (!stw_dev)
104 pipe_mutex_lock( stw_dev->ctx_mutex );
112 pipe_mutex_unlock( stw_dev->ctx_mutex );
149 if (!stw_dev)
    [all...]
stw_pixelformat.c 122 struct stw_device *stw_dev,
132 assert(stw_dev->pixelformat_extended_count < STW_MAX_PIXELFORMATS);
133 if(stw_dev->pixelformat_extended_count >= STW_MAX_PIXELFORMATS)
143 pfi = &stw_dev->pixelformats[stw_dev->pixelformat_extended_count];
205 ++stw_dev->pixelformat_extended_count;
208 ++stw_dev->pixelformat_count;
209 assert(stw_dev->pixelformat_count == stw_dev->pixelformat_extended_count);
221 struct pipe_screen *screen = stw_dev->screen
    [all...]
stw_device.h 82 extern struct stw_device *stw_dev;
stw_getprocaddress.c 88 if (!stw_dev)
stw_ext_pbuffer.c 111 if (iWidth > stw_dev->max_2d_length) {
113 iWidth = stw_dev->max_2d_length;
120 if (iHeight > stw_dev->max_2d_length) {
122 iHeight = stw_dev->max_2d_length;
stw_ext_pixelformat.c 247 *pvalue = stw_dev->max_2d_length;
251 *pvalue = stw_dev->max_2d_length * stw_dev->max_2d_length;
stw_st.c 114 stw_dev->screen->resource_create(stw_dev->screen, &templ);

Completed in 1597 milliseconds