diff options
author | Vinson Lee <[email protected]> | 2010-08-07 23:19:27 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2010-08-07 23:19:27 -0700 |
commit | facf368df29b6889e9566aaa642aa1937e6dfc56 (patch) | |
tree | e2ea3309926565afe215226a0d073d7494ce43fa /src/mesa/drivers/dri/radeon | |
parent | f4511c4835879090ce7e6afe3ac26b98fb91899a (diff) |
dri: Add missing header m_xform.h.
This is a follow-up patch to commit
f4511c4835879090ce7e6afe3ac26b98fb91899a.
Files that include tnl_dd/t_dd_dmatmp.h now need to also include
m_xform.h as t_context.h no longer includes it.
Diffstat (limited to 'src/mesa/drivers/dri/radeon')
-rw-r--r-- | src/mesa/drivers/dri/radeon/radeon_swtcl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/radeon/radeon_swtcl.c b/src/mesa/drivers/dri/radeon/radeon_swtcl.c index 67be466c3f8..29defe73a70 100644 --- a/src/mesa/drivers/dri/radeon/radeon_swtcl.c +++ b/src/mesa/drivers/dri/radeon/radeon_swtcl.c @@ -40,7 +40,10 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include "main/macros.h" #include "main/simple_list.h" +#include "math/m_xform.h" + #include "swrast_setup/swrast_setup.h" + #include "tnl/tnl.h" #include "tnl/t_context.h" #include "tnl/t_pipeline.h" |