rsx: Explicity describe transfer regions for both source and destination blocks
This commit is contained in:
@@ -618,7 +618,13 @@ struct coord_base
|
||||
{
|
||||
}
|
||||
|
||||
constexpr coord_base(T x, T y, T width, T height) : x{ x }, y{ y }, width{ width }, height{ height }
|
||||
constexpr coord_base(const coord_base<T>& other)
|
||||
: position{ other.position }, size{ other.size }
|
||||
{
|
||||
}
|
||||
|
||||
constexpr coord_base(T x, T y, T width, T height)
|
||||
: x{ x }, y{ y }, width{ width }, height{ height }
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user