summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i915/i915_blit.c
AgeCommit message (Collapse)AuthorFilesLines
2014-01-17s/Tungsten Graphics/VMware/José Fonseca1-2/+2
Tungsten Graphics Inc. was acquired by VMware Inc. in 2008. Leaving the old copyright name is creating unnecessary confusion, hence this change. This was the sed script I used: $ cat tg2vmw.sed # Run as: # # git reset --hard HEAD && find include scons src -type f -not -name 'sed*' -print0 | xargs -0 sed -i -f tg2vmw.sed # # Rename copyrights s/Tungsten Gra\(ph\|hp\)ics,\? [iI]nc\.\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./g /Copyright/s/Tungsten Graphics\(,\? [iI]nc\.\)\?\(, Cedar Park\)\?\(, Austin\)\?\(, \(Texas\|TX\)\)\?\.\?/VMware, Inc./ s/TUNGSTEN GRAPHICS/VMWARE/g # Rename emails s/alanh@tungstengraphics.com/alanh@vmware.com/ s/jens@tungstengraphics.com/jowen@vmware.com/g s/jrfonseca-at-tungstengraphics-dot-com/jfonseca-at-vmware-dot-com/ s/jrfonseca\?@tungstengraphics.com/jfonseca@vmware.com/g s/keithw\?@tungstengraphics.com/keithw@vmware.com/g s/michel@tungstengraphics.com/daenzer@vmware.com/g s/thomas-at-tungstengraphics-dot-com/thellstom-at-vmware-dot-com/ s/zack@tungstengraphics.com/zackr@vmware.com/ # Remove dead links s@Tungsten Graphics (http://www.tungstengraphics.com)@Tungsten Graphics@g # C string src/gallium/state_trackers/vega/api_misc.c s/"Tungsten Graphics, Inc"/"VMware, Inc"/ Reviewed-by: Brian Paul <brianp@vmware.com>
2013-03-08i915g: Use PIPE_FLUSH_END_OF_FRAME to trigger throttlingStéphane Marchesin1-4/+4
This helps with jittering, instead of throttling at every command buffer we only throttle once a frame.
2011-03-01i915g: kill relocs accoutingDaniel Vetter1-4/+4
No one ever cared. libdrm does dynamic resizing of its reloc-table, anyway. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2011-02-27i915g: implement cache flushingDaniel Vetter1-0/+4
With an extremely dumb strategy. But it's the same i915c employs. Also improve the hw_atom code slightly by statically specifying the required batch space. For extremely variably stuff (shaders, constants) it would probably be better to add a new parameter to the hw_atom->validate function. Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2011-02-27i915g: buffer validation for blitterDaniel Vetter1-0/+11
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
2010-12-02i915g: prepare winsys/batchbuffer for execbuf2Daniel Vetter1-3/+3
Wire up a fenced parameter, switch all relocations to _FENCED Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch> Reviewed-by: Jakob Bornecrantz <wallbraker@gmail.com> Signed-off-by: Jakob Bornecrantz <wallbraker@gmail.com>
2010-07-04i915g: Don't flush after blitJakob Bornecrantz1-2/+0
2010-06-22i915g: Rework debug print codeJakob Bornecrantz1-10/+7
2010-05-29i915g: adapt to clear interface changesRoland Scheidegger1-2/+2
should in theory support separate depth/stencil clears (untested). Also fix some format omissions?
2010-05-19i915g: remove unused flip parameterRoland Scheidegger1-1/+0
2010-03-26i915g: Rename winsys prefix to i915_ from intel_Jakob Bornecrantz1-6/+6
Since the winsys isn't shared with i965 and never will be
2009-10-05i915g: Drop the simple sufixJakob Bornecrantz1-0/+151
None of the other driver have a silly sufix, so just drop it. Nothing new added in this commit or any other commit but this is better marketing.