diff options
author | Chia-I Wu <[email protected]> | 2013-04-29 09:58:51 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2013-05-01 11:22:20 +0800 |
commit | 51d749e7e2f0b3f835ddc5f61bb380bf486350f1 (patch) | |
tree | f49b2572e1b89732eba3d2ea2edbfbd744b588b9 /src/gallium/drivers/ilo/ilo_3d.c | |
parent | bb1f635dcc8f6d817b49785edcf6ec6b46ca5405 (diff) |
ilo: use ilo_dev_info in GPE and 3D pipeline
We need only dev->gen and dev->gt, but it makes sense to expose other
information to the pipeline.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_3d.c')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_3d.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/ilo/ilo_3d.c b/src/gallium/drivers/ilo/ilo_3d.c index 52a47de5bd9..e16c4bf794d 100644 --- a/src/gallium/drivers/ilo/ilo_3d.c +++ b/src/gallium/drivers/ilo/ilo_3d.c @@ -313,7 +313,7 @@ ilo_3d_post_cp_flush(struct ilo_3d *hw3d) * Create a 3D context. */ struct ilo_3d * -ilo_3d_create(struct ilo_cp *cp, int gen, int gt) +ilo_3d_create(struct ilo_cp *cp, const struct ilo_dev_info *dev) { struct ilo_3d *hw3d; @@ -329,7 +329,7 @@ ilo_3d_create(struct ilo_cp *cp, int gen, int gt) list_inithead(&hw3d->prim_generated_queries); list_inithead(&hw3d->prim_emitted_queries); - hw3d->pipeline = ilo_3d_pipeline_create(cp, gen, gt); + hw3d->pipeline = ilo_3d_pipeline_create(cp, dev); if (!hw3d->pipeline) { FREE(hw3d); return NULL; |