diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2011-04-07 10:29:40 +0100 |
---|---|---|
committer | Owain G. Ainsworth <oga@openbsd.org> | 2011-05-29 23:47:10 +0100 |
commit | fde55b50c15ddc868a6bec5da37c50e61e6ffae7 (patch) | |
tree | ed64789e8a4ee7349c9bdb71ec6dd37976aa4045 /src/intel.h | |
parent | 0056e90499eb7d648828a87af76ae8cb6927b2de (diff) |
i965: Avoid transform overheads for vertex emit where possible
Minor improvement as the bottlenecks lie elsewhere. But it was annoying me.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
(cherry picked from commit ad22003033eb502474ae538a97e3b42cf8f83880)
Signed-off-by: Owain G. Ainsworth <oga@openbsd.org>
Diffstat (limited to 'src/intel.h')
-rw-r--r-- | src/intel.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/intel.h b/src/intel.h index dc03ab6b..a127460a 100644 --- a/src/intel.h +++ b/src/intel.h @@ -647,7 +647,7 @@ typedef struct intel_screen_private { } gen6_render_state; uint32_t prim_offset; - void (*prim_emit)(PixmapPtr dest, + void (*prim_emit)(struct intel_screen_private *intel, int srcX, int srcY, int maskX, int maskY, int dstX, int dstY, |