Removed .data() for deviceName
Signed-off-by: Fabian Sauter <sauter.fabian@mailbox.org>
This commit is contained in:
parent
731b74610d
commit
732704a9ee
1 changed files with 1 additions and 1 deletions
|
|
@ -12,7 +12,7 @@ vkPropertiesToDict(const vk::PhysicalDeviceProperties& properties)
|
|||
{
|
||||
|
||||
pybind11::dict pyDict(
|
||||
"device_name"_a = std::string(properties.deviceName.data()),
|
||||
"device_name"_a = std::string(properties.deviceName),
|
||||
"max_work_group_count"_a =
|
||||
pybind11::make_tuple(properties.limits.maxComputeWorkGroupCount[0],
|
||||
properties.limits.maxComputeWorkGroupCount[1],
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue