diff options
author | Vinson Lee <vlee@vmware.com> | 2010-07-12 14:21:57 -0700 |
---|---|---|
committer | Vinson Lee <vlee@vmware.com> | 2010-07-12 14:23:51 -0700 |
commit | c6b7aa96f9c1f2cf5d23512e808ee4023fc2674d (patch) | |
tree | b925dc588220252ad68360abbf8207817b591e3f | |
parent | 5ba0ba72d90a51312a00a9aaecd080344912a58f (diff) |
r600: Fix include recursion.
Fix r600_context.h -> r700_oglprog.h -> r600_context.h include
recursion.
-rw-r--r-- | src/mesa/drivers/dri/r600/r700_oglprog.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r600/r700_oglprog.h b/src/mesa/drivers/dri/r600/r700_oglprog.h index fe2e9d19749a..4d4213386785 100644 --- a/src/mesa/drivers/dri/r600/r700_oglprog.h +++ b/src/mesa/drivers/dri/r600/r700_oglprog.h @@ -27,7 +27,7 @@ #ifndef _R700_OGLPROG_H_ #define _R700_OGLPROG_H_ -#include "r600_context.h" +#include "main/dd.h" extern void r700InitShaderFuncs(struct dd_function_table *functions); |