From: Brian Date: Mon, 6 Aug 2007 19:54:03 +0000 (+0100) Subject: need a softpipe func for texture layout X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=07633371ff4987d3149e78a1f0791da720af4e60;p=mesa.git need a softpipe func for texture layout --- 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 00000000000..2bbdca0f58b --- /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; +} + + diff --git a/src/mesa/pipe/softpipe/sp_tex_layout.h b/src/mesa/pipe/softpipe/sp_tex_layout.h new file mode 100644 index 00000000000..be85e4be584 --- /dev/null +++ b/src/mesa/pipe/softpipe/sp_tex_layout.h @@ -0,0 +1,16 @@ +#ifndef SP_TEX_LAYOUT_H +#define SP_TEX_LAYOUT_H + + +struct pipe_context; +struct pipe_mipmap_tree; + + +extern GLboolean +softpipe_mipmap_tree_layout(struct pipe_context *pipe, + struct pipe_mipmap_tree *mt); + + +#endif /* SP_TEX_LAYOUT_H */ + +