nv50: rework miptree/texture/texsurf code a bit
[mesa.git] / src / gallium / drivers / nv50 / nv50_context.c
index e822d863945ad0db2d0248fd98be5cf66389d01c..a225c4bf728a42ebe122b7bcfe3cc9a29898cbcf 100644 (file)
@@ -24,6 +24,12 @@ nv50_destroy(struct pipe_context *pipe)
        free(nv50);
 }
 
+
+static void
+nv50_set_edgeflags(struct pipe_context *pipe, const unsigned *bitfield)
+{
+}
+
 struct pipe_context *
 nv50_create(struct pipe_screen *pscreen, unsigned pctx_id)
 {
@@ -42,13 +48,13 @@ nv50_create(struct pipe_screen *pscreen, unsigned pctx_id)
 
        nv50->pipe.destroy = nv50_destroy;
 
+       nv50->pipe.set_edgeflags = nv50_set_edgeflags;
        nv50->pipe.draw_arrays = nv50_draw_arrays;
        nv50->pipe.draw_elements = nv50_draw_elements;
        nv50->pipe.clear = nv50_clear;
 
        nv50->pipe.flush = nv50_flush;
 
-       nv50_init_miptree_functions(nv50);
        nv50_init_surface_functions(nv50);
        nv50_init_state_functions(nv50);
        nv50_init_query_functions(nv50);