diff options
author | Eric Anholt <[email protected]> | 2019-01-18 15:36:15 -0800 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2019-01-27 08:30:03 -0800 |
commit | 3e743d8cd86c09f68d840604c9df52e0499af64f (patch) | |
tree | ec11fa44b3d524ef06137c775b3dbf7868326504 /src/gallium/drivers/v3d/v3d_context.c | |
parent | fe6a21c8671b7b3deea281cb0b9617f3ce7fc5c5 (diff) |
v3d: Avoid duplicating limits defines between gallium and v3d core.
We don't want to pull the compiler into every include in the gallium
driver, so just make a new little header to store the limits.
Diffstat (limited to 'src/gallium/drivers/v3d/v3d_context.c')
-rw-r--r-- | src/gallium/drivers/v3d/v3d_context.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/v3d/v3d_context.c b/src/gallium/drivers/v3d/v3d_context.c index 7e9bc3d22db..d07ad403590 100644 --- a/src/gallium/drivers/v3d/v3d_context.c +++ b/src/gallium/drivers/v3d/v3d_context.c @@ -37,6 +37,7 @@ #include "v3d_screen.h" #include "v3d_context.h" #include "v3d_resource.h" +#include "broadcom/compiler/v3d_compiler.h" void v3d_flush(struct pipe_context *pctx) |