diff options
Diffstat (limited to 'src/mesa/pipe/softpipe/sp_tex_layout.c')
-rw-r--r-- | src/mesa/pipe/softpipe/sp_tex_layout.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/mesa/pipe/softpipe/sp_tex_layout.c b/src/mesa/pipe/softpipe/sp_tex_layout.c new file mode 100644 index 0000000000..2bbdca0f58 --- /dev/null +++ b/src/mesa/pipe/softpipe/sp_tex_layout.c @@ -0,0 +1,13 @@ + +#include "pipe/p_state.h" +#include "sp_tex_layout.h" + + +GLboolean +softpipe_mipmap_tree_layout(struct pipe_context *pipe, + struct pipe_mipmap_tree *mt) +{ + return GL_TRUE; +} + + |