diff options
author | Kenneth Graunke <[email protected]> | 2020-02-05 01:02:30 -0800 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2020-02-21 16:44:38 -0800 |
commit | 1cdf5abdfaeba5a89574d7cc374e5667be2e2f93 (patch) | |
tree | de7021e969c2426632dd6feccd34c6b71d6a7131 /src/gallium/drivers/iris/iris_draw.c | |
parent | f8ab00776cc0b2a009403a8611c00341d879f9ab (diff) |
iris: Make mocs an inline helper in iris_resource.h
Now that it uses ISL rather than genxml code, there's no need for it to
live as a vtable function inside the state module. We can just make it
a static inline helper in iris_resource.h so it's available throughout
the codebase.
Fixes: a4da6008b6a ("iris: Use mocs from isl_dev.")
Reviewed-by: Tapani Pälli <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/merge_requests/3720>
Diffstat (limited to 'src/gallium/drivers/iris/iris_draw.c')
-rw-r--r-- | src/gallium/drivers/iris/iris_draw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/iris/iris_draw.c b/src/gallium/drivers/iris/iris_draw.c index 497ffc5ccd2..08132a5ca7d 100644 --- a/src/gallium/drivers/iris/iris_draw.c +++ b/src/gallium/drivers/iris/iris_draw.c @@ -326,7 +326,7 @@ iris_update_grid_size_resource(struct iris_context *ice, .size_B = sizeof(grid->grid), .format = ISL_FORMAT_RAW, .stride_B = 1, - .mocs = ice->vtbl.mocs(grid_bo, isl_dev)); + .mocs = iris_mocs(grid_bo, isl_dev)); ice->state.dirty |= IRIS_DIRTY_BINDINGS_CS; } |