HomeSort by relevance Sort by last modified time
    Searched full:svga (Results 51 - 75 of 204) sorted by null

1 23 4 5 6 7 8 9

  /external/mesa3d/src/gallium/drivers/svga/
svga_swtnl.h 36 boolean svga_init_swtnl( struct svga_context *svga );
37 void svga_destroy_swtnl( struct svga_context *svga );
41 svga_swtnl_draw_vbo(struct svga_context *svga,
svga_resource_buffer.c 75 struct svga_context *svga = svga_context(pipe); local
80 int64_t begin = svga_get_time(svga);
82 SVGA_STATS_TIME_PUSH(svga_sws(svga), SVGA_STATS_TIME_BUFFERTRANSFERMAP);
114 assert(svga_have_vgpu10(svga));
117 (void) svga_buffer_handle(svga, resource);
121 svga_buffer_upload_flush(svga, sbuf);
122 svga_context_finish(svga);
127 ret = SVGA3D_vgpu10_ReadbackSubResource(svga->swc, sbuf->handle, 0);
129 svga_context_flush(svga, NULL);
130 ret = SVGA3D_vgpu10_ReadbackSubResource(svga->swc, sbuf->handle, 0)
310 struct svga_context *svga = svga_context(pipe); local
    [all...]
svga_shader.h 256 svga_init_shader_key_common(const struct svga_context *svga,
269 svga_define_shader(struct svga_context *svga,
274 svga_set_shader(struct svga_context *svga,
279 svga_new_shader_variant(struct svga_context *svga);
282 svga_destroy_shader_variant(struct svga_context *svga,
287 svga_rebind_shaders(struct svga_context *svga);
293 svga_shader_too_large(const struct svga_context *svga,
296 if (svga_have_gb_objects(svga)) {
332 svga_have_vs_streamout(const struct svga_context *svga)
334 return svga->curr.vs != NULL && svga->curr.vs->base.stream_output != NULL
    [all...]
svga_sampler_view.c 61 struct svga_context *svga = svga_context(pipe); local
73 assert(!svga_have_vgpu10(svga));
100 SVGA_DBG(DEBUG_VIEWS, "svga: Sampler view: reuse %p, %u %u, last %u\n",
125 "svga: Sampler view: no %p, mips %u..%u, nr %u, size (%ux%ux%u), last %u\n",
140 "svga: Sampler view: yes %p, mips %u..%u, nr %u, size (%ux%ux%u), last %u\n",
149 sv->handle = svga_texture_view_surface(svga, tex,
179 svga_validate_sampler_view(struct svga_context *svga,
188 assert(svga);
189 assert(!svga_have_vgpu10(svga));
205 svga_texture_copy_handle(svga,
    [all...]
svga_draw_arrays.c 48 struct pipe_context *pipe = &hwtnl->svga->pipe;
103 SVGA_STATS_TIME_PUSH(svga_sws(hwtnl->svga), SVGA_STATS_TIME_GENERATEINDICES);
170 SVGA_STATS_TIME_POP(svga_sws(hwtnl->svga));
218 struct svga_context *svga = hwtnl->svga; local
220 SVGA_STATS_TIME_PUSH(svga_sws(svga), SVGA_STATS_TIME_HWTNLDRAWARRAYS);
222 if (svga->curr.rast->templ.fill_front !=
223 svga->curr.rast->templ.fill_back) {
227 if (svga->curr.rast->templ.flatshade &&
228 svga->state.hw_draw.fs->constant_color_output)
    [all...]
svga_surface.h 79 svga_mark_surfaces_dirty(struct svga_context *svga);
82 svga_propagate_surface(struct svga_context *svga, struct pipe_surface *surf);
85 svga_propagate_rendertargets(struct svga_context *svga);
91 svga_texture_view_surface(struct svga_context *svga,
105 svga_texture_copy_handle(struct svga_context *svga,
129 svga_validate_surface_view(struct svga_context *svga, struct svga_surface *s);
svga_resource_buffer.h 62 * SVGA pipe buffer.
183 struct svga_context *svga; member in struct:svga_buffer::__anon30109
260 svga_buffer_hw_storage_map(struct svga_context *svga,
266 svga->hud.num_buffers_mapped++;
269 return svga->swc->surface_map(svga->swc, sbuf->handle, flags, retry);
280 svga_buffer_hw_storage_unmap(struct svga_context *svga,
286 struct svga_winsys_context *swc = svga->swc;
294 svga_context_flush(svga, NULL);
326 svga_buffer_handle(struct svga_context *svga,
    [all...]
svga_sampler_view.h 83 svga_validate_sampler_view(struct svga_context *svga, struct svga_sampler_view *v);
103 svga_check_sampler_view_resource_collision(struct svga_context *svga,
108 svga_check_sampler_framebuffer_resource_collision(struct svga_context *svga,
112 svga_validate_pipe_sampler_view(struct svga_context *svga,
svga_tgsi.c 161 * Parse TGSI shader and translate to SVGA/DX9 serialized
164 * In this function SVGA shader is emitted to an in-memory buffer that
169 svga_tgsi_vgpu9_translate(struct svga_context *svga,
176 SVGA_STATS_TIME_PUSH(svga_sws(svga), SVGA_STATS_TIME_TGSIVGPU9TRANSLATE);
207 debug_printf("svga: too many temporary registers (%u)\n",
215 debug_printf("svga: emit header failed\n");
220 debug_printf("svga: emit instructions failed\n");
224 variant = svga_new_shader_variant(svga);
266 SVGA_STATS_TIME_POP(svga_sws(svga));
svga_draw_private.h 42 * handled by the svga device. Other types will be converted to
155 struct svga_context *svga; member in struct:svga_hwtnl
195 const struct svga_context *svga = hwtnl->svga; local
202 if (svga_have_vgpu10(svga)) {
svga_tgsi.h 66 svga_tgsi_vgpu9_translate(struct svga_context *svga,
71 svga_tgsi_vgpu10_translate(struct svga_context *svga,
svga_public.h 28 * VMware SVGA public interface. Used by targets to create a stack.
  /external/mesa3d/src/gallium/drivers/svga/include/
svga_escape.h 29 * Definitions for our own (vendor-specific) SVGA Escape commands.
62 * SVGA Hint commands.
64 * These escapes let the SVGA driver provide optional information to
72 * that use the SVGA Screen Object extension. Instead of sending
svga3d_limits.h 29 * SVGA 3d hardware limits
62 * Maximum size in dwords of shader text the SVGA device will allow.
svga3d_reg.h 29 * SVGA 3d hardware definitions
  /external/mesa3d/src/gallium/
SConscript 19 'drivers/svga/SConscript',
51 'winsys/svga/drm/SConscript',
Makefile.am 40 ## vmwgfx/svga
42 SUBDIRS += drivers/svga winsys/svga/drm
  /external/mesa3d/src/gallium/winsys/svga/drm/
Android.mk 36 $(GALLIUM_TOP)/drivers/svga \
37 $(GALLIUM_TOP)/drivers/svga/include
Makefile.am 27 -I$(top_srcdir)/src/gallium/drivers/svga \
28 -I$(top_srcdir)/src/gallium/drivers/svga/include \
  /device/linaro/bootloader/edk2/ArmPlatformPkg/ArmVExpressPkg/Library/PL111LcdArmVExpressLib/
PL111LcdArmVExpress.c 51 { // Mode 1 : SVGA : 800 x 600 x 24 bpp
52 SVGA, SVGA_H_RES_PIXELS, SVGA_V_RES_PIXELS, LCD_BITS_PER_PIXEL_24, SVGA_OSC_FREQUENCY,
81 { // Mode 7 : SVGA : 800 x 600 x 16 bpp (565 Mode)
82 SVGA, SVGA_H_RES_PIXELS, SVGA_V_RES_PIXELS, LCD_BITS_PER_PIXEL_16_565, SVGA_OSC_FREQUENCY,
96 { // Mode 10 : SVGA : 800 x 600 x 15 bpp
97 SVGA, SVGA_H_RES_PIXELS, SVGA_V_RES_PIXELS, LCD_BITS_PER_PIXEL_16_555, SVGA_OSC_FREQUENCY,
116 { // Mode 14 : SVGA : 800 x 600 x 12 bpp (444 Mode)
117 SVGA, SVGA_H_RES_PIXELS, SVGA_V_RES_PIXELS, LCD_BITS_PER_PIXEL_12_444, SVGA_OSC_FREQUENCY,
  /external/syslinux/com32/sysdump/
vesa.c 26 rm.eax.w[0] = 0x4F00; /* Get SVGA general information */
45 rm.eax.w[0] = 0x4F01; /* Get SVGA mode information */
  /external/mesa3d/docs/relnotes/
10.2.html 82 driver(svga), whereas now it loads a shared pipe_*.so driver. Provide the
83 following options during configure, if you would like support for svga driver
84 <i>--enable-xa --with-gallium-drivers=svga</i>
6.3.2 26 SVGA implements OpenGL 1.3
  /external/mesa3d/src/gallium/auxiliary/target-helpers/
drm_helper.h 171 #include "svga/drm/svga_drm_public.h"
172 #include "svga/svga_public.h"
193 fprintf(stderr, "svga: driver missing\n");
  /external/syslinux/com32/modules/
vesainfo.c 41 rm.eax.w[0] = 0x4F00; /* Get SVGA general information */
68 rm.eax.w[0] = 0x4F01; /* Get SVGA mode information */

Completed in 1138 milliseconds

1 23 4 5 6 7 8 9