diff options
author | Eric Anholt <[email protected]> | 2018-11-02 11:51:58 -0700 |
---|---|---|
committer | Eric Anholt <[email protected]> | 2018-11-02 14:26:38 -0700 |
commit | f32ba7abd774a0b09805da582a97e1a1eb5efd75 (patch) | |
tree | c2cc98aba00f14cf4eb24d152d6821a9e849d013 /src/gallium/drivers/v3d/v3dx_context.h | |
parent | df9f574c13bc9856acc74253c0ca6d8629b9ed52 (diff) |
v3d: Remove the special path for simulaton of the submit ioctl.
Now that it doesn't need to find the struct v3d_bos, it can just take the
normal v3d_ioctl() path.
Diffstat (limited to 'src/gallium/drivers/v3d/v3dx_context.h')
-rw-r--r-- | src/gallium/drivers/v3d/v3dx_context.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/gallium/drivers/v3d/v3dx_context.h b/src/gallium/drivers/v3d/v3dx_context.h index bb90e1ccf15..ab826af6c29 100644 --- a/src/gallium/drivers/v3d/v3dx_context.h +++ b/src/gallium/drivers/v3d/v3dx_context.h @@ -39,8 +39,9 @@ void v3dX(bcl_epilogue)(struct v3d_context *v3d, struct v3d_job *job); void v3dX(simulator_init_regs)(struct v3d_hw *v3d); int v3dX(simulator_get_param_ioctl)(struct v3d_hw *v3d, struct drm_v3d_get_param *args); -void v3dX(simulator_flush)(struct v3d_hw *v3d, struct drm_v3d_submit_cl *submit, - uint32_t gmp_ofs); +void v3dX(simulator_submit_cl_ioctl)(struct v3d_hw *v3d, + struct drm_v3d_submit_cl *args, + uint32_t gmp_offset); const struct v3d_format *v3dX(get_format_desc)(enum pipe_format f); void v3dX(get_internal_type_bpp_for_output_format)(uint32_t format, uint32_t *type, |