drm/vmwgfx: Rename stream output target binding tracker struct
Previous name vmw_ctx_bindinfo_so is misleading because it actually represent so target and stream output is a new resource type that needs tracking for SM5 capable device. Also rename binding type enum and internal functions to reflect these belongs to so targets. Signed-off-by: Deepak Rawat <drawat.floss@gmail.com> Reviewed-by: Thomas Hellström (VMware) <thomas_os@shipmail.org> Reviewed-by: Roland Scheidegger <sroland@vmware.com> Signed-off-by: Roland Scheidegger <sroland@vmware.com>
This commit is contained in:

committed by
Roland Scheidegger

parent
b6fad73975
commit
403fef50e3
@@ -50,7 +50,7 @@ enum vmw_ctx_binding_type {
|
||||
vmw_ctx_binding_dx_rt,
|
||||
vmw_ctx_binding_sr,
|
||||
vmw_ctx_binding_ds,
|
||||
vmw_ctx_binding_so,
|
||||
vmw_ctx_binding_so_target,
|
||||
vmw_ctx_binding_vb,
|
||||
vmw_ctx_binding_ib,
|
||||
vmw_ctx_binding_uav,
|
||||
@@ -132,14 +132,14 @@ struct vmw_ctx_bindinfo_view {
|
||||
};
|
||||
|
||||
/**
|
||||
* struct vmw_ctx_bindinfo_so - StreamOutput binding metadata
|
||||
* struct vmw_ctx_bindinfo_so_target - StreamOutput binding metadata
|
||||
*
|
||||
* @bi: struct vmw_ctx_bindinfo we derive from.
|
||||
* @offset: Device data used to reconstruct binding command.
|
||||
* @size: Device data used to reconstruct binding command.
|
||||
* @slot: Device data used to reconstruct binding command.
|
||||
*/
|
||||
struct vmw_ctx_bindinfo_so {
|
||||
struct vmw_ctx_bindinfo_so_target {
|
||||
struct vmw_ctx_bindinfo bi;
|
||||
uint32 offset;
|
||||
uint32 size;
|
||||
|
Reference in New Issue
Block a user