Searched refs:bind_flags (Results 1 - 25 of 30) sorted by relevance

12

/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/svga/
H A Dsvga_resource_buffer_upload.h42 unsigned bind_flags);
51 unsigned bind_flags);
56 unsigned bind_flags);
62 unsigned bind_flags);
72 unsigned bind_flags);
H A Dsvga_resource_buffer_upload.c117 unsigned bind_flags)
123 return svga_buffer_create_host_surface(ss, sbuf, bind_flags);
149 unsigned bind_flags)
161 if (bind_flags & PIPE_BIND_VERTEX_BUFFER) {
165 if (bind_flags & PIPE_BIND_INDEX_BUFFER) {
169 if (bind_flags & PIPE_BIND_CONSTANT_BUFFER)
172 if (bind_flags & PIPE_BIND_STREAM_OUTPUT)
175 if (bind_flags & PIPE_BIND_SAMPLER_VIEW)
178 if (!bind_flags && sbuf->b.b.usage == PIPE_USAGE_STAGING) {
199 sbuf->handle = svga_screen_surface_create(ss, bind_flags,
115 svga_buffer_create_hw_storage(struct svga_screen * ss,struct svga_buffer * sbuf,unsigned bind_flags) argument
147 svga_buffer_create_host_surface(struct svga_screen * ss,struct svga_buffer * sbuf,unsigned bind_flags) argument
227 svga_buffer_recreate_host_surface(struct svga_context * svga,struct svga_buffer * sbuf,unsigned bind_flags) argument
266 compatible_bind_flags(unsigned bind_flags,unsigned tobind_flags) argument
284 svga_buffer_get_host_surface(struct svga_buffer * sbuf,unsigned bind_flags) argument
301 svga_buffer_add_host_surface(struct svga_buffer * sbuf,struct svga_winsys_surface * handle,struct svga_host_surface_cache_key * key,unsigned bind_flags) argument
837 svga_buffer_update_hw(struct svga_context * svga,struct svga_buffer * sbuf,unsigned bind_flags) argument
[all...]
H A Dsvga_resource_buffer.c138 (void) svga_buffer_handle(svga, resource, sbuf->bind_flags);
248 if (svga_buffer_create_hw_storage(ss, sbuf, sbuf->bind_flags) != PIPE_OK) {
423 unsigned bind_flags; local in function:svga_buffer_create
435 bind_flags = template->bind & ~PIPE_BIND_CUSTOM;
439 if (bind_flags & PIPE_BIND_CONSTANT_BUFFER) {
444 bind_flags = PIPE_BIND_CONSTANT_BUFFER;
449 * in multiples of 16, in order to allow bind_flags promotion,
471 bind_flags |= (PIPE_BIND_VERTEX_BUFFER |
475 if (svga_buffer_create_host_surface(ss, sbuf, bind_flags) != PIPE_OK)
487 sbuf->bind_flags
[all...]
H A Dsvga_screen_cache.h149 unsigned bind_flags, enum pipe_resource_usage usage,
H A Dsvga_resource_buffer.h68 unsigned bind_flags; member in struct:svga_buffer_surface
81 unsigned bind_flags; member in struct:svga_buffer
H A Dsvga_surface.h97 unsigned bind_flags,
H A Dsvga_screen_cache.c453 * \param bind_flags bitmask of PIPE_BIND_x flags
459 unsigned bind_flags, enum pipe_resource_usage usage,
499 else if (bind_flags & PIPE_BIND_INDEX_BUFFER) {
458 svga_screen_surface_create(struct svga_screen * svgascreen,unsigned bind_flags,enum pipe_resource_usage usage,boolean * validated,struct svga_host_surface_cache_key * key) argument
H A Dsvga_pipe_blit.c844 src_surf = svga_buffer_handle(svga, src_tex, sbuffer->bind_flags);
845 dst_surf = svga_buffer_handle(svga, dst_tex, dbuffer->bind_flags);
H A Dsvga_surface.c200 unsigned bind_flags,
259 handle = svga_screen_surface_create(ss, bind_flags, PIPE_USAGE_DEFAULT,
198 svga_texture_view_surface(struct svga_context * svga,struct svga_texture * tex,unsigned bind_flags,SVGA3dSurfaceAllFlags flags,SVGA3dSurfaceFormat format,unsigned start_mip,unsigned num_mip,int layer_pick,unsigned num_layers,int zslice_pick,boolean cacheable,struct svga_host_surface_cache_key * key) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/svga/
H A Dsvga_resource_buffer_upload.h42 unsigned bind_flags);
51 unsigned bind_flags);
56 unsigned bind_flags);
62 unsigned bind_flags);
72 unsigned bind_flags);
H A Dsvga_resource_buffer_upload.c119 unsigned bind_flags)
125 return svga_buffer_create_host_surface(ss, sbuf, bind_flags);
151 unsigned bind_flags)
163 if (bind_flags & PIPE_BIND_VERTEX_BUFFER) {
167 if (bind_flags & PIPE_BIND_INDEX_BUFFER) {
171 if (bind_flags & PIPE_BIND_CONSTANT_BUFFER)
174 if (bind_flags & PIPE_BIND_STREAM_OUTPUT)
177 if (bind_flags & PIPE_BIND_SAMPLER_VIEW)
180 if (bind_flags & PIPE_BIND_COMMAND_ARGS_BUFFER) {
185 if (!bind_flags
117 svga_buffer_create_hw_storage(struct svga_screen * ss,struct svga_buffer * sbuf,unsigned bind_flags) argument
149 svga_buffer_create_host_surface(struct svga_screen * ss,struct svga_buffer * sbuf,unsigned bind_flags) argument
248 svga_buffer_recreate_host_surface(struct svga_context * svga,struct svga_buffer * sbuf,unsigned bind_flags) argument
282 compatible_bind_flags(unsigned bind_flags,unsigned tobind_flags) argument
300 svga_buffer_get_host_surface(struct svga_buffer * sbuf,unsigned bind_flags) argument
317 svga_buffer_add_host_surface(struct svga_buffer * sbuf,struct svga_winsys_surface * handle,struct svga_host_surface_cache_key * key,unsigned bind_flags) argument
848 svga_buffer_update_hw(struct svga_context * svga,struct svga_buffer * sbuf,unsigned bind_flags) argument
[all...]
H A Dsvga_resource_buffer.c143 (void) svga_buffer_handle(svga, resource, sbuf->bind_flags);
249 if (svga_buffer_create_hw_storage(ss, sbuf, sbuf->bind_flags) != PIPE_OK) {
374 (!sbuf->bind_flags || (sbuf->bind_flags & PIPE_BIND_CONSTANT_BUFFER))) {
462 unsigned bind_flags; local in function:svga_buffer_create
473 bind_flags = template->bind & ~PIPE_BIND_CUSTOM;
477 if (bind_flags & PIPE_BIND_CONSTANT_BUFFER) {
482 bind_flags = PIPE_BIND_CONSTANT_BUFFER;
487 * in multiples of 16, in order to allow bind_flags promotion,
509 bind_flags |
[all...]
H A Dsvga_screen_cache.h150 unsigned bind_flags, enum pipe_resource_usage usage,
H A Dsvga_resource_buffer.h65 unsigned bind_flags; member in struct:svga_buffer_surface
78 unsigned bind_flags; member in struct:svga_buffer
H A Dsvga_surface.h97 unsigned bind_flags,
H A Dsvga_screen_cache.c479 * \param bind_flags bitmask of PIPE_BIND_x flags
485 unsigned bind_flags, enum pipe_resource_usage usage,
525 else if (bind_flags & PIPE_BIND_INDEX_BUFFER) {
484 svga_screen_surface_create(struct svga_screen * svgascreen,unsigned bind_flags,enum pipe_resource_usage usage,boolean * validated,struct svga_host_surface_cache_key * key) argument
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/llvmpipe/
H A Dlp_context.h166 unsigned bind_flags);
H A Dlp_texture.c693 unsigned bind_flags)
704 buffer->base.bind = bind_flags;
690 llvmpipe_user_buffer_create(struct pipe_screen * screen,void * ptr,unsigned bytes,unsigned bind_flags) argument
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
H A Dsp_context.h229 unsigned bind_flags);
H A Dsp_texture.c487 unsigned bind_flags)
498 spr->base.bind = bind_flags;
484 softpipe_user_buffer_create(struct pipe_screen * screen,void * ptr,unsigned bytes,unsigned bind_flags) argument
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_context.h199 unsigned bind_flags);
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
H A Dsp_context.h226 unsigned bind_flags);
H A Dsp_texture.c487 unsigned bind_flags)
498 spr->base.bind = bind_flags;
484 softpipe_user_buffer_create(struct pipe_screen * screen,void * ptr,unsigned bytes,unsigned bind_flags) argument
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/wgl/
H A Dstw_pixelformat.c232 unsigned bind_flags = PIPE_BIND_RENDER_TARGET; local in function:add_color_format_variants
246 bind_flags |= PIPE_BIND_DISPLAY_TARGET;
258 bind_flags)) {
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/wgl/
H A Dstw_pixelformat.c243 unsigned bind_flags = PIPE_BIND_RENDER_TARGET; local in function:add_color_format_variants
261 bind_flags |= PIPE_BIND_DISPLAY_TARGET;
273 bind_flags)) {

Completed in 19 milliseconds

12