mesa.git
5 years agoiris: rw_bo for pipe controls
Kenneth Graunke [Tue, 18 Sep 2018 04:15:48 +0000 (21:15 -0700)]
iris: rw_bo for pipe controls

this is used for WRITE IMMEDIATE...
but maybe we don't want to for the workaround BO?

5 years agoiris: use 0 for TCS passthrough program string ID
Kenneth Graunke [Fri, 21 Sep 2018 22:43:49 +0000 (15:43 -0700)]
iris: use 0 for TCS passthrough program string ID

the passthrough shader doesn't need a real program string ID - that's
basically used for ARB programs indicating total program source code
changes, or other pre-baked uniform changes, etc...none of which a
passthrough shader has...so we don't need a unique identifier to
distinguish them.  We want to use a consistent value so we find
existing passthrough shaders in the cache.

5 years agoiris: Add support for TCS passthrough
Caio Marcelo de Oliveira Filho [Fri, 21 Sep 2018 19:22:34 +0000 (12:22 -0700)]
iris: Add support for TCS passthrough

If no TCS is provided, create a "passthrough" TCS that will take the
default values set in the API as constants and pass to the TES, along
with any other inputs it expects.  The code to create the NIR shader
is the same as in i965.

Tested with

    ./piglit run -t 'tess' quick_shader r

and fixed a dozen crashes from that list.

5 years agoiris: inherit the index buffer properly
Kenneth Graunke [Fri, 21 Sep 2018 00:27:47 +0000 (17:27 -0700)]
iris: inherit the index buffer properly

5 years agoiris: delete bogus comment
Kenneth Graunke [Thu, 20 Sep 2018 23:46:58 +0000 (16:46 -0700)]
iris: delete bogus comment

Caio asked what was wrong.  There is nothing wrong.  :)

5 years agoiris: properly re-pin stencil buffers
Kenneth Graunke [Thu, 20 Sep 2018 22:35:14 +0000 (15:35 -0700)]
iris: properly re-pin stencil buffers

5 years agoiris: fix context restore of 3DSTATE_CONSTANT ranges
Kenneth Graunke [Thu, 20 Sep 2018 20:32:07 +0000 (13:32 -0700)]
iris: fix context restore of 3DSTATE_CONSTANT ranges

if clean we want to DO the pinning...not SKIP the pinning.

thanks to Jordan Justen for catching this!

5 years agoiris: silence const warning
Kenneth Graunke [Thu, 20 Sep 2018 18:12:27 +0000 (11:12 -0700)]
iris: silence const warning

not sure why this is labeled const, I'm pretty sure we are taking the
reference and owning this, so there's no particular reason we can't
change it.  it certainly seems to be working for non-compute.  and,
freedreno's ir3_shader.c seems to do this as well.  still...gross :/

5 years agoiris: refactor program CSO stuff
Kenneth Graunke [Fri, 27 Jul 2018 04:59:20 +0000 (21:59 -0700)]
iris: refactor program CSO stuff

5 years agoiris: Fix uses of gl_TessLevel*
Caio Marcelo de Oliveira Filho [Wed, 19 Sep 2018 17:17:23 +0000 (10:17 -0700)]
iris: Fix uses of gl_TessLevel*

The backend compiler expects the gl_TessLevel* variables to be mapped
as inputs instead of system values.  Use the new PIPE_CAP to get this
behavior from GLSL compiler.

Tested with:
tests/spec/arb_tessellation_shader/execution/vs-tcs-tes-tessinner-tessouter-inputs-quads.shader_test

5 years agoiris: totally untested icelake support
Kenneth Graunke [Tue, 18 Sep 2018 18:04:44 +0000 (11:04 -0700)]
iris: totally untested icelake support

5 years agoiris: initialize "don't suck" bits, as Ben likes to call them
Kenneth Graunke [Tue, 18 Sep 2018 18:07:16 +0000 (11:07 -0700)]
iris: initialize "don't suck" bits, as Ben likes to call them

5 years agoiris: refactor LRIs in context setup
Kenneth Graunke [Tue, 18 Sep 2018 18:04:24 +0000 (11:04 -0700)]
iris: refactor LRIs in context setup

we're going to have more of them, so reduce the boilerplate

5 years agoiris: enable ARB_enhanced_layouts
Kenneth Graunke [Sat, 15 Sep 2018 22:27:59 +0000 (15:27 -0700)]
iris: enable ARB_enhanced_layouts

5 years agoiris: re-pin binding table contents if we didn't re-emit them
Kenneth Graunke [Sat, 15 Sep 2018 21:50:26 +0000 (14:50 -0700)]
iris: re-pin binding table contents if we didn't re-emit them

fixes glsl-vs-loop and other regressions from multibinder.

5 years agoiris: move binder pinning outside the dirty == 0 check
Kenneth Graunke [Sat, 15 Sep 2018 21:35:47 +0000 (14:35 -0700)]
iris: move binder pinning outside the dirty == 0 check

This might be a new batch with back to back non-dirty calls, if so we
need to inherit the old binder...

5 years agoiris: fix memzone_for_address since multibinder changes
Chris Wilson [Fri, 14 Sep 2018 22:12:36 +0000 (15:12 -0700)]
iris: fix memzone_for_address since multibinder changes

5 years agoiris: update comments for multibinder
Kenneth Graunke [Thu, 13 Sep 2018 06:31:46 +0000 (23:31 -0700)]
iris: update comments for multibinder

5 years agoiris: fix SO offset writes for multiple streams
Kenneth Graunke [Thu, 13 Sep 2018 05:23:50 +0000 (22:23 -0700)]
iris: fix SO offset writes for multiple streams

5 years agoiris: Support multiple binder BOs, update Surface State Base Address
Kenneth Graunke [Sun, 9 Sep 2018 02:43:34 +0000 (19:43 -0700)]
iris: Support multiple binder BOs, update Surface State Base Address

5 years agoiris: fix null FB and unbound tex surface state addresses
Kenneth Graunke [Tue, 11 Sep 2018 08:09:27 +0000 (01:09 -0700)]
iris: fix null FB and unbound tex surface state addresses

5 years agoiris: set EXEC_OBJECT_CAPTURE on all driver internal buffers
Kenneth Graunke [Sat, 8 Sep 2018 06:39:30 +0000 (23:39 -0700)]
iris: set EXEC_OBJECT_CAPTURE on all driver internal buffers

5 years agoiris: fix constant buffer 0 to be absolute
Kenneth Graunke [Fri, 7 Sep 2018 19:26:55 +0000 (12:26 -0700)]
iris: fix constant buffer 0 to be absolute

thanks to Jason for catching this.  Fixes some va64 tests.  Surprisingly
not much else, as apparently getting to UBO range 4 is uncommon!

5 years agoiris: don't unconditionally emit 3DSTATE_VF / 3DSTATE_VF_TOPOLOGY
Kenneth Graunke [Sat, 1 Sep 2018 01:03:19 +0000 (18:03 -0700)]
iris: don't unconditionally emit 3DSTATE_VF / 3DSTATE_VF_TOPOLOGY

this was just laziness on my part

5 years agoiris: skip over whole function if dirty == 0
Kenneth Graunke [Sat, 1 Sep 2018 07:58:29 +0000 (00:58 -0700)]
iris: skip over whole function if dirty == 0

kinda pointless in non-pathological cases, but does boost our score in
the drawarrays case by 50%...

5 years agoiris: Allow inlining of require/get_command_space
Kenneth Graunke [Sun, 19 Aug 2018 17:31:29 +0000 (10:31 -0700)]
iris: Allow inlining of require/get_command_space

eliminates so many callqs for ptr++

5 years agoiris: use Eric's new caps helper
Kenneth Graunke [Fri, 7 Sep 2018 02:42:58 +0000 (19:42 -0700)]
iris: use Eric's new caps helper

this does change a couple caps...PRIMITIVE_RESTART_FOR_PATCHES...

5 years agoiris: new caps
Kenneth Graunke [Sat, 1 Sep 2018 04:22:31 +0000 (21:22 -0700)]
iris: new caps

5 years agoiris: fix blend state memcpy
Kenneth Graunke [Wed, 29 Aug 2018 22:24:45 +0000 (15:24 -0700)]
iris: fix blend state memcpy

thanks to Jason for noticing grumpy valgrind

5 years agoiris: Skip primitive ID overrides if the shader wrote a custom value
Kenneth Graunke [Sat, 25 Aug 2018 07:11:24 +0000 (00:11 -0700)]
iris: Skip primitive ID overrides if the shader wrote a custom value

Fixes glsl-1.50/execution/geometry/primitive-id-out

5 years agoiris: fix crash when binding optional shader for the first time
Kenneth Graunke [Fri, 24 Aug 2018 04:21:04 +0000 (21:21 -0700)]
iris: fix crash when binding optional shader for the first time

5 years agoiris: handle level/layer in direct maps
Kenneth Graunke [Thu, 23 Aug 2018 09:36:18 +0000 (02:36 -0700)]
iris: handle level/layer in direct maps

needed now that we do 1D linear

5 years agoiris: use linear for 1D textures
Kenneth Graunke [Thu, 23 Aug 2018 06:39:38 +0000 (23:39 -0700)]
iris: use linear for 1D textures

This gets us the gen9 compact linear storage

5 years agoiris: big old hack for tex-miplevel-selection
Kenneth Graunke [Thu, 23 Aug 2018 08:49:49 +0000 (01:49 -0700)]
iris: big old hack for tex-miplevel-selection

copied from ilo.  I don't understand this at all..

5 years agoiris: fix sampler state setting
Kenneth Graunke [Thu, 23 Aug 2018 09:15:12 +0000 (02:15 -0700)]
iris: fix sampler state setting

5 years agoiris: try to hack around binder issue
Kenneth Graunke [Tue, 21 Aug 2018 18:50:56 +0000 (11:50 -0700)]
iris: try to hack around binder issue

5 years agoiris: fix line-aa-width
Kenneth Graunke [Tue, 21 Aug 2018 18:30:09 +0000 (11:30 -0700)]
iris: fix line-aa-width

we should probably move the roundf to st_atom_raster

5 years agoiris: implement get_sample_position
Kenneth Graunke [Tue, 21 Aug 2018 06:37:13 +0000 (23:37 -0700)]
iris: implement get_sample_position

Fixes arb_sample_shading/builtin-gl-sample-position

5 years agoiris: z_res -> s_res
Kenneth Graunke [Tue, 21 Aug 2018 04:23:25 +0000 (21:23 -0700)]
iris: z_res -> s_res

fixes crashes introduced a few commits ago

5 years agoiris: reenable R32G32B32 texture buffers
Kenneth Graunke [Tue, 21 Aug 2018 03:55:17 +0000 (20:55 -0700)]
iris: reenable R32G32B32 texture buffers

This dropped us from GL 4.2 to GL 3.3 by mistake.  Thanks to Dave for
catching this!

5 years agoiris: Record reusability of bo on construction
Chris Wilson [Sun, 19 Aug 2018 09:32:43 +0000 (10:32 +0100)]
iris: Record reusability of bo on construction

We know that if the bufmgr->reuse is set to false or if the bo is too
large for a bucket, the same will be true when we come to free the bo.

5 years agoiris: Reduce binder alignment from 64 to 32
Kenneth Graunke [Sun, 19 Aug 2018 21:05:53 +0000 (14:05 -0700)]
iris: Reduce binder alignment from 64 to 32

3DSTATE_BINDING_TABLE_POINTER_XS's alignment requirement is only 32B.

Makes us waste less precious binder space.

5 years agoiris: precompute hashes for cache tracking
Kenneth Graunke [Sun, 19 Aug 2018 17:08:05 +0000 (10:08 -0700)]
iris: precompute hashes for cache tracking

saves a touch of cpu overhead in the new resolve tracking

5 years agoiris: AMD_pinned_memory
Chris Wilson [Tue, 31 Jul 2018 13:47:02 +0000 (14:47 +0100)]
iris: AMD_pinned_memory

(rebased by Ken, mainly set res->internal_format)

5 years agoiris: proper cache tracking
Kenneth Graunke [Sun, 19 Aug 2018 07:21:34 +0000 (00:21 -0700)]
iris: proper cache tracking

this is copied from the i965 aux resolve stuff...minus the aux resolves

5 years agoiris: Move cache tracking to iris_resolve.c
Kenneth Graunke [Sun, 19 Aug 2018 07:18:51 +0000 (00:18 -0700)]
iris: Move cache tracking to iris_resolve.c

5 years agoiris: use consistent copyright formatting
Kenneth Graunke [Sun, 19 Aug 2018 07:31:46 +0000 (00:31 -0700)]
iris: use consistent copyright formatting

some of them had typos, didn't say 'authors or copyright holders',
or other mistakes.  This is now https://opensource.org/licenses/MIT
text, formatted consistently.

5 years agoiris: track depth/stencil writes enabled
Kenneth Graunke [Sun, 19 Aug 2018 06:21:41 +0000 (23:21 -0700)]
iris: track depth/stencil writes enabled

5 years agoiris: Move iris_sampler_view declaration to iris_resource.h
Kenneth Graunke [Sun, 19 Aug 2018 06:58:54 +0000 (23:58 -0700)]
iris: Move iris_sampler_view declaration to iris_resource.h

We'll need this for resolve tracking.  There's also no genxml stuff here

5 years agoiris: Move things to iris_shader_state
Kenneth Graunke [Sun, 19 Aug 2018 06:43:14 +0000 (23:43 -0700)]
iris: Move things to iris_shader_state

We didn't originally have this struct, so we had lots of ad-hoc arrays.
Now that we have it, it makes sense to group things there.

5 years agoiris: move iris_shader_state from ice->shaders.state to ice->state.shaders
Kenneth Graunke [Sun, 19 Aug 2018 06:39:48 +0000 (23:39 -0700)]
iris: move iris_shader_state from ice->shaders.state to ice->state.shaders

it's more state related...

5 years agoiris: Drop bogus sampler state saving
Kenneth Graunke [Sun, 19 Aug 2018 06:44:11 +0000 (23:44 -0700)]
iris: Drop bogus sampler state saving

We do this in an earlier loop.  This was just reading things out of the
array, and saving them back over the same array...but in the wrong slots

5 years agoiris: rename pipe to base
Kenneth Graunke [Sun, 19 Aug 2018 06:21:32 +0000 (23:21 -0700)]
iris: rename pipe to base

5 years agoiris: don't emit SBE all the time
Kenneth Graunke [Sat, 18 Aug 2018 08:24:38 +0000 (01:24 -0700)]
iris: don't emit SBE all the time

5 years agoiris: port non-bucket alignment bugfix
Kenneth Graunke [Fri, 17 Aug 2018 06:49:31 +0000 (23:49 -0700)]
iris: port non-bucket alignment bugfix

Sergii's 24839663a40257e0468406d72c48d431b5ae2bd4

5 years agoiris: drop pwrite
Kenneth Graunke [Fri, 17 Aug 2018 06:48:24 +0000 (23:48 -0700)]
iris: drop pwrite

nobody uses it

5 years agoiris: drop dead assignments
Kenneth Graunke [Fri, 17 Aug 2018 06:47:58 +0000 (23:47 -0700)]
iris: drop dead assignments

Eric's commit 9a6a6317629eb4c63d28860ded30778ac341ac63

5 years agoiris: last VUE map NOS, handle > 16 FS inputs
Kenneth Graunke [Wed, 15 Aug 2018 20:35:05 +0000 (13:35 -0700)]
iris: last VUE map NOS, handle > 16 FS inputs

not sure if the UNCOMPILED_FS flagging is still needed, should
reevaluate those hacks at some point

5 years agoiris: implement ARB_clear_texture
Kenneth Graunke [Wed, 15 Aug 2018 08:34:10 +0000 (01:34 -0700)]
iris: implement ARB_clear_texture

5 years agoiris: call maybe_flush for each blorp operation
Kenneth Graunke [Wed, 15 Aug 2018 06:37:53 +0000 (23:37 -0700)]
iris: call maybe_flush for each blorp operation

otherwise with high layer counts we may exceed two batches worth of
commands... (!)

5 years agoiris: assert depth is 1 in resource_copy_region
Kenneth Graunke [Wed, 15 Aug 2018 06:22:12 +0000 (23:22 -0700)]
iris: assert depth is 1 in resource_copy_region

given the dstz parameter I don't think it does multiple slices..

5 years agoiris: blorp blit multiple slices
Kenneth Graunke [Wed, 15 Aug 2018 06:20:21 +0000 (23:20 -0700)]
iris: blorp blit multiple slices

fixes getteximage-depth

5 years agoiris: Fix tiled memcpy for cubes...and for array slices
Kenneth Graunke [Tue, 14 Aug 2018 23:44:07 +0000 (16:44 -0700)]
iris: Fix tiled memcpy for cubes...and for array slices

tiled_memcpy_map was not offsetting map->ptr based on the slice,
while unmap was.  also, we were doing offsetting wrong for cubes.

5 years agoiris: disallow RGB32 formats too
Kenneth Graunke [Tue, 14 Aug 2018 22:50:42 +0000 (15:50 -0700)]
iris: disallow RGB32 formats too

5 years agoiris: Convert RGBX to RGBA for rendering.
Kenneth Graunke [Mon, 13 Aug 2018 23:41:19 +0000 (16:41 -0700)]
iris: Convert RGBX to RGBA for rendering.

Fixes a bunch of RGB bugs.

5 years agoiris: we can do multisample Z resolves
Kenneth Graunke [Sat, 11 Aug 2018 19:48:24 +0000 (12:48 -0700)]
iris: we can do multisample Z resolves

5 years agoiris: deal with Marek's new MSAA caps
Kenneth Graunke [Sat, 11 Aug 2018 19:47:46 +0000 (12:47 -0700)]
iris: deal with Marek's new MSAA caps

storage sample count is equal to sample count for us, for now,
so 0 the pipe cap and ignore the new parameter

5 years agoiris: say no to more formats
Kenneth Graunke [Sat, 11 Aug 2018 06:50:02 +0000 (23:50 -0700)]
iris: say no to more formats

copied from brw_surface_formats.c

5 years agoiris: actually do stencil blits
Kenneth Graunke [Thu, 9 Aug 2018 19:27:58 +0000 (12:27 -0700)]
iris: actually do stencil blits

5 years agoiris: refcounting, who needs it?
Kenneth Graunke [Thu, 9 Aug 2018 16:19:58 +0000 (09:19 -0700)]
iris: refcounting, who needs it?

that's right, we do!

5 years agoiris: drop stencil handling now that u_transfer_helper does it
Kenneth Graunke [Thu, 9 Aug 2018 10:28:24 +0000 (03:28 -0700)]
iris: drop stencil handling now that u_transfer_helper does it

5 years agoiris: use u_transfer_helper for depth stencil packing/unpacking
Kenneth Graunke [Wed, 8 Aug 2018 21:54:09 +0000 (14:54 -0700)]
iris: use u_transfer_helper for depth stencil packing/unpacking

5 years agoiris: WTF transfers
Kenneth Graunke [Tue, 7 Aug 2018 16:21:40 +0000 (09:21 -0700)]
iris: WTF transfers

stencil unfortunately is stored in the Weird Tile Format (WTF or Tile-W)
which needs special CPU detiling code.

5 years agoiris: allow S8 as a stencil format
Kenneth Graunke [Sun, 5 Aug 2018 06:19:12 +0000 (23:19 -0700)]
iris: allow S8 as a stencil format

5 years agoiris: actually emit stencil packets
Kenneth Graunke [Fri, 3 Aug 2018 23:18:09 +0000 (16:18 -0700)]
iris: actually emit stencil packets

5 years agoiris: clear stencil
Kenneth Graunke [Mon, 30 Jul 2018 22:08:02 +0000 (15:08 -0700)]
iris: clear stencil

5 years agoiris: depth or stencil fixes
Kenneth Graunke [Fri, 3 Aug 2018 08:24:51 +0000 (01:24 -0700)]
iris: depth or stencil fixes

5 years agoiris: fill out more caps
Kenneth Graunke [Thu, 2 Aug 2018 05:27:16 +0000 (22:27 -0700)]
iris: fill out more caps

5 years agoiris: get angry about execbuf failures
Kenneth Graunke [Wed, 1 Aug 2018 18:21:57 +0000 (11:21 -0700)]
iris: get angry about execbuf failures

want this to be easy to detect for now

5 years agoiris: simplify batch len qword alignment
Kenneth Graunke [Wed, 1 Aug 2018 00:32:47 +0000 (17:32 -0700)]
iris: simplify batch len qword alignment

Split from a patch by Chris Wilson so I can test it independently

5 years agoiris: rename ring to engine
Kenneth Graunke [Tue, 31 Jul 2018 23:10:50 +0000 (16:10 -0700)]
iris: rename ring to engine

makes more sense these days.  split from a patch by Chris Wilson

5 years agoiris: remember to set bo->userptr
Kenneth Graunke [Tue, 31 Jul 2018 22:40:12 +0000 (15:40 -0700)]
iris: remember to set bo->userptr

5 years agoiris: Wrap userptr for creating bo
Chris Wilson [Mon, 30 Jul 2018 23:52:34 +0000 (00:52 +0100)]
iris: Wrap userptr for creating bo

5 years agoiris: sync bugfixes from brw_bufmgr
Kenneth Graunke [Tue, 31 Jul 2018 22:34:44 +0000 (15:34 -0700)]
iris: sync bugfixes from brw_bufmgr

I wrote softpin support here first, then debugged and landed it in brw;
some of those fixes need to get brought back.

5 years agoiris: comment everything
Kenneth Graunke [Tue, 31 Jul 2018 06:49:34 +0000 (23:49 -0700)]
iris: comment everything

1. Write the code
2. Add comments
3. PROFIT (or just avoid cost of explaining or relearning things...)

5 years agoiris: add minor comments
Kenneth Graunke [Tue, 31 Jul 2018 05:59:52 +0000 (22:59 -0700)]
iris: add minor comments

5 years agoiris: fix some hangs around null framebuffers
Dave Airlie [Tue, 31 Jul 2018 00:33:35 +0000 (10:33 +1000)]
iris: fix some hangs around null framebuffers

This fixes some cases in fbo-none* and framebuffer_no_attachments.

I'm not sure this is correct otherwise, the tests don't all pass yet

No idea if this is in any way the correct answer

5 years agoiris: Set resource modifier on handle
Chris Wilson [Sat, 28 Jul 2018 20:10:17 +0000 (21:10 +0100)]
iris: Set resource modifier on handle

Required for gdm_bo_create_with_modifiers

5 years agoiris: we don't support textureGatherOffsets, need it lowered
Kenneth Graunke [Sat, 28 Jul 2018 03:57:55 +0000 (20:57 -0700)]
iris: we don't support textureGatherOffsets, need it lowered

5 years agoiris: cube arrays are cubes too
Kenneth Graunke [Sat, 28 Jul 2018 03:25:21 +0000 (20:25 -0700)]
iris: cube arrays are cubes too

5 years agoiris: fix sample mask
Kenneth Graunke [Fri, 27 Jul 2018 23:02:09 +0000 (16:02 -0700)]
iris: fix sample mask

0xffffffff does not mean 1, it means enable as many as there actually
are.  we don't get set_sample_mask() calls until some masking is
actually applied...i.e. it doesn't get updated based on # of samples
in the FBO changing.

5 years agoiris: drop pipe_shader_state
Kenneth Graunke [Fri, 27 Jul 2018 05:32:08 +0000 (22:32 -0700)]
iris: drop pipe_shader_state

looking at the freedreno code, this is totally unnecessary!  we can just
store the NIR and be happy, and not have any vestiges of TGSI.

plus we can reuse this structure for compute shaders, without needing a
pipe_compute_state base.

5 years agoiris: fix GS output component limit
Kenneth Graunke [Thu, 26 Jul 2018 08:11:11 +0000 (01:11 -0700)]
iris: fix GS output component limit

this is total, so should be 1024, not 128

5 years agoiris: Avoid croaking when trying to create FBO surfaces with bad formats
Kenneth Graunke [Thu, 26 Jul 2018 08:06:27 +0000 (01:06 -0700)]
iris: Avoid croaking when trying to create FBO surfaces with bad formats

create_surface happens before st_validate_attachment, which actually
does the "hey, this is a render target now, is that OK?" check

Fixes asserts in ./bin/arb_texture_view-rendering-formats, allowing the
rest of the tests to run.

5 years agoiris: enable texture gather
Kenneth Graunke [Thu, 26 Jul 2018 06:33:16 +0000 (23:33 -0700)]
iris: enable texture gather

5 years agoiris: BIG OL' HACK for UBO updates
Kenneth Graunke [Wed, 25 Jul 2018 22:09:50 +0000 (15:09 -0700)]
iris: BIG OL' HACK for UBO updates

We need to re-push data when UBO changes.  This will need to be replaced
with a usage history based flushing system later.

5 years agoiris: update a todo comment
Kenneth Graunke [Wed, 25 Jul 2018 21:39:02 +0000 (14:39 -0700)]
iris: update a todo comment

5 years agoiris: Don't reserve new binding table section unless things are dirty
Kenneth Graunke [Wed, 25 Jul 2018 05:14:37 +0000 (22:14 -0700)]
iris: Don't reserve new binding table section unless things are dirty

5 years agoiris: implement texture/memory barriers
Kenneth Graunke [Wed, 25 Jul 2018 04:15:13 +0000 (21:15 -0700)]
iris: implement texture/memory barriers

5 years agoiris: drop unused bo parameter
Kenneth Graunke [Wed, 25 Jul 2018 04:03:52 +0000 (21:03 -0700)]
iris: drop unused bo parameter