svga: add svga_init_clear_functions()
authorNeha Bhende <bhenden@vmware.com>
Thu, 11 Aug 2016 23:43:03 +0000 (16:43 -0700)
committerBrian Paul <brianp@vmware.com>
Fri, 26 Aug 2016 12:19:51 +0000 (06:19 -0600)
define svga_init_clear_functions()
and svga_clear_texture as svga->pipe.clear_texture. This is part of
ARB_clear_texture extension

Reviewed-by: Brian Paul <brianp@vmware.com>
Reviewed-by: Charmaine Lee <charmainel@vmware.com>
src/gallium/drivers/svga/svga_context.c
src/gallium/drivers/svga/svga_context.h
src/gallium/drivers/svga/svga_pipe_clear.c

index cbc312edbde7a4a9e5bedf5f347f6e4903177398..04acc0022bf42e34cdb0df5e78385499d80da4ef 100644 (file)
@@ -164,6 +164,7 @@ struct pipe_context *svga_context_create(struct pipe_screen *screen,
    svga_init_query_functions(svga);
    svga_init_surface_functions(svga);
    svga_init_stream_output_functions(svga);
+   svga_init_clear_functions(svga);
 
    /* init misc state */
    svga->curr.sample_mask = ~0;
index 4316c44ae297dd867444e959d43905741c3ac6b3..300c74143e59fc6c60fb68a1edb71c2551b9803a 100644 (file)
@@ -645,6 +645,7 @@ void svga_init_draw_functions( struct svga_context *svga );
 void svga_init_query_functions( struct svga_context *svga );
 void svga_init_surface_functions(struct svga_context *svga);
 void svga_init_stream_output_functions( struct svga_context *svga );
+void svga_init_clear_functions( struct svga_context *svga );
 
 void svga_cleanup_vertex_state( struct svga_context *svga );
 void svga_cleanup_tss_binding( struct svga_context *svga );
index abf110c6ce8ed37aff5f2bfb7586da3552d3832a..174d02c152a7de8eda2cf44cbf8030bb43fd7e8a 100644 (file)
@@ -452,3 +452,7 @@ svga_clear_texture(struct pipe_context *pipe,
 }
 
 
+void svga_init_clear_functions(struct svga_context *svga)
+{
+   svga->pipe.clear_texture = svga_clear_texture;
+}