summaryrefslogtreecommitdiff
path: root/src/mesa/drivers/dri/r600
diff options
context:
space:
mode:
authorKevin DeKorte <kdekorte@gmail.com>2009-07-17 14:43:42 -0400
committerAlex Deucher <alexdeucher@gmail.com>2009-07-17 14:43:42 -0400
commit79a170108f1d9cad949cd2a34e4de597beae72db (patch)
tree5fb20919e64a5727ca3e65f2acf7deb218dff684 /src/mesa/drivers/dri/r600
parentc4ab08a0cdddd05f53810490f4ded5838acd1217 (diff)
R6xx/r7xx: warning fixes
patch from Kevin DeKorte with some minor fixes from me.
Diffstat (limited to 'src/mesa/drivers/dri/r600')
-rw-r--r--src/mesa/drivers/dri/r600/r600_context.h2
-rw-r--r--src/mesa/drivers/dri/r600/r600_emit.h2
-rw-r--r--src/mesa/drivers/dri/r600/r600_texstate.c2
-rw-r--r--src/mesa/drivers/dri/r600/r700_clear.c1
4 files changed, 7 insertions, 0 deletions
diff --git a/src/mesa/drivers/dri/r600/r600_context.h b/src/mesa/drivers/dri/r600/r600_context.h
index 7957be6e0d..bcb33e1386 100644
--- a/src/mesa/drivers/dri/r600/r600_context.h
+++ b/src/mesa/drivers/dri/r600/r600_context.h
@@ -49,6 +49,8 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "main/colormac.h"
#include "r700_chip.h"
+#include "r600_tex.h"
+#include "r700_oglprog.h"
struct r600_context;
typedef struct r600_context context_t;
diff --git a/src/mesa/drivers/dri/r600/r600_emit.h b/src/mesa/drivers/dri/r600/r600_emit.h
index d3c9ef59eb..661774d11e 100644
--- a/src/mesa/drivers/dri/r600/r600_emit.h
+++ b/src/mesa/drivers/dri/r600/r600_emit.h
@@ -41,6 +41,8 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "r600_cmdbuf.h"
#include "radeon_reg.h"
+void r600EmitCacheFlush(context_t *rmesa);
+
extern GLboolean r600EmitShader(GLcontext * ctx,
void ** shaderbo,
GLvoid * data,
diff --git a/src/mesa/drivers/dri/r600/r600_texstate.c b/src/mesa/drivers/dri/r600/r600_texstate.c
index f56cc970d4..2466aa9595 100644
--- a/src/mesa/drivers/dri/r600/r600_texstate.c
+++ b/src/mesa/drivers/dri/r600/r600_texstate.c
@@ -49,6 +49,8 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#include "radeon_mipmap_tree.h"
#include "r600_tex.h"
+void r600UpdateTextureState(GLcontext * ctx);
+
void r600UpdateTextureState(GLcontext * ctx)
{
context_t *context = R700_CONTEXT(ctx);
diff --git a/src/mesa/drivers/dri/r600/r700_clear.c b/src/mesa/drivers/dri/r600/r700_clear.c
index 46a7010363..e84be38622 100644
--- a/src/mesa/drivers/dri/r600/r700_clear.c
+++ b/src/mesa/drivers/dri/r600/r700_clear.c
@@ -37,6 +37,7 @@
#include "r700_shaderinst.h"
#include "r600_emit.h"
+#include "r700_clear.h"
static GLboolean r700ClearFast(context_t *context, GLbitfield mask)
{