projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
65b3fed
)
intel/aubinator: drop unused functions
author
Eric Engestrom
<eric.engestrom@intel.com>
Tue, 19 Jun 2018 14:55:26 +0000
(15:55 +0100)
committer
Eric Engestrom
<eric.engestrom@intel.com>
Wed, 20 Jun 2018 14:17:26 +0000
(15:17 +0100)
Signed-off-by: Eric Engestrom <eric.engestrom@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
src/intel/tools/aubinator.c
patch
|
blob
|
history
diff --git
a/src/intel/tools/aubinator.c
b/src/intel/tools/aubinator.c
index c8d79ae377d68285bd1e7d2cfa092a711e20d44a..77676e9c670f43c7dbe61f51176ba1b5ef5644bc 100644
(file)
--- a/
src/intel/tools/aubinator.c
+++ b/
src/intel/tools/aubinator.c
@@
-78,24
+78,8
@@
uint64_t instruction_bound;
FILE *outfile;
-static inline uint32_t
-field(uint32_t value, int start, int end)
-{
- uint32_t mask;
-
- mask = ~0U >> (31 - end + start);
-
- return (value >> start) & mask;
-}
-
struct brw_instruction;
-static inline int
-valid_offset(uint32_t offset)
-{
- return offset < gtt_end;
-}
-
#define GEN_ENGINE_RENDER 1
#define GEN_ENGINE_BLITTER 2