mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-07 11:28:05 +02:00
added softpipe_mipmap_tree_layout
This commit is contained in:
parent
07633371ff
commit
4a60b94701
2 changed files with 8 additions and 4 deletions
|
|
@ -29,6 +29,7 @@ DRIVER_SOURCES = \
|
|||
sp_state_sampler.c \
|
||||
sp_state_setup.c \
|
||||
sp_state_surface.c \
|
||||
sp_tex_layout.c \
|
||||
sp_surface.c
|
||||
|
||||
C_SOURCES = \
|
||||
|
|
|
|||
|
|
@ -33,13 +33,14 @@
|
|||
#include "main/macros.h"
|
||||
#include "pipe/draw/draw_context.h"
|
||||
#include "pipe/p_defines.h"
|
||||
#include "sp_context.h"
|
||||
#include "sp_clear.h"
|
||||
#include "sp_region.h"
|
||||
#include "sp_buffer.h"
|
||||
#include "sp_clear.h"
|
||||
#include "sp_context.h"
|
||||
#include "sp_prim_setup.h"
|
||||
#include "sp_region.h"
|
||||
#include "sp_state.h"
|
||||
#include "sp_surface.h"
|
||||
#include "sp_prim_setup.h"
|
||||
#include "sp_tex_layout.h"
|
||||
#include "sp_winsys.h"
|
||||
|
||||
|
||||
|
|
@ -199,6 +200,8 @@ struct pipe_context *softpipe_create( struct softpipe_winsys *sws )
|
|||
softpipe->pipe.reset_occlusion_counter = softpipe_reset_occlusion_counter;
|
||||
softpipe->pipe.get_occlusion_counter = softpipe_get_occlusion_counter;
|
||||
|
||||
softpipe->pipe.mipmap_tree_layout = softpipe_mipmap_tree_layout;
|
||||
|
||||
softpipe->quad.polygon_stipple = sp_quad_polygon_stipple_stage(softpipe);
|
||||
softpipe->quad.shade = sp_quad_shade_stage(softpipe);
|
||||
softpipe->quad.alpha_test = sp_quad_alpha_test_stage(softpipe);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue