-
Dies entt make use of multiple CPU cores? |
Beta Was this translation helpful? Give feedback.
Answered by
skypjack
Sep 12, 2023
Replies: 1 comment 2 replies
-
Well, it's like asking if a vector does mt by default. No, it does not, you can use it in a mt context but the vector on itself does nothing because it's just a container. The same is true for EnTT. It's mostly a container. It doesn't try to take over you loop, your code, your systems, your scheduling, whatever. It offers all you need to do this but it's up to you to design your code the way you like, without having to stick with a model imposed by a library. |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
trsh
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Well, it's like asking if a vector does mt by default. No, it does not, you can use it in a mt context but the vector on itself does nothing because it's just a container. The same is true for EnTT. It's mostly a container. It doesn't try to take over you loop, your code, your systems, your scheduling, whatever. It offers all you need to do this but it's up to you to design your code the way you like, without having to stick with a model imposed by a library.