You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We have some functions which take device_t's by value rather than by const-reference. While this will work - it now has a bit of a cost if one uses the primary context, as the device_t class caches a primary context to avoid repeated calls to obtain it. So, there is reason to prefer the latter form of passing device_t's.
The text was updated successfully, but these errors were encountered:
We have some functions which take
device_t
's by value rather than by const-reference. While this will work - it now has a bit of a cost if one uses the primary context, as thedevice_t
class caches a primary context to avoid repeated calls to obtain it. So, there is reason to prefer the latter form of passingdevice_t
's.The text was updated successfully, but these errors were encountered: