Lines Matching full:svga
631 void svga_init_state_functions( struct svga_context *svga );
632 void svga_init_flush_functions( struct svga_context *svga );
633 void svga_init_string_functions( struct svga_context *svga );
634 void svga_init_blit_functions(struct svga_context *svga);
636 void svga_init_blend_functions( struct svga_context *svga );
637 void svga_init_depth_stencil_functions( struct svga_context *svga );
638 void svga_init_misc_functions( struct svga_context *svga );
639 void svga_init_rasterizer_functions( struct svga_context *svga );
640 void svga_init_sampler_functions( struct svga_context *svga );
641 void svga_init_fs_functions( struct svga_context *svga );
642 void svga_init_vs_functions( struct svga_context *svga );
643 void svga_init_gs_functions( struct svga_context *svga );
644 void svga_init_vertex_functions( struct svga_context *svga );
645 void svga_init_constbuffer_functions( struct svga_context *svga );
646 void svga_init_draw_functions( struct svga_context *svga );
647 void svga_init_query_functions( struct svga_context *svga );
648 void svga_init_surface_functions(struct svga_context *svga);
649 void svga_init_stream_output_functions( struct svga_context *svga );
650 void svga_init_clear_functions( struct svga_context *svga );
652 void svga_cleanup_vertex_state( struct svga_context *svga );
653 void svga_cleanup_sampler_state( struct svga_context *svga );
654 void svga_cleanup_tss_binding( struct svga_context *svga );
655 void svga_cleanup_framebuffer( struct svga_context *svga );
657 void svga_context_flush( struct svga_context *svga,
660 void svga_context_finish(struct svga_context *svga);
662 void svga_hwtnl_flush_retry( struct svga_context *svga );
663 void svga_hwtnl_flush_buffer( struct svga_context *svga,
666 void svga_surfaces_flush(struct svga_context *svga);
684 svga_sws(struct svga_context *svga)
686 return svga_screen(svga->pipe.screen)->sws;
690 svga_have_gb_objects(const struct svga_context *svga)
692 return svga_screen(svga->pipe.screen)->sws->have_gb_objects;
696 svga_have_gb_dma(const struct svga_context *svga)
698 return svga_screen(svga->pipe.screen)->sws->have_gb_dma;
702 svga_have_vgpu10(const struct svga_context *svga)
704 return svga_screen(svga->pipe.screen)->sws->have_vgpu10;
708 svga_need_to_rebind_resources(const struct svga_context *svga)
710 return svga_screen(svga->pipe.screen)->sws->need_to_rebind_resources;
724 svga_get_time(struct svga_context *svga)
726 return svga->hud.uses_time ? os_time_get() : 0;