Top "Data-oriented-design" questions

data-oriented design is the practice of designing software by developing transforms for well-formed data where well-formed is guided by the target hardware and the transforms that will operate on it.

What is data oriented design?

I was reading this article, and this guy goes on talking about how everyone can greatly benefit from mixing in …

data-oriented-design
Data-oriented design in practice?

There has been one more question on what data-oriented design is, and there's one article which is often referred to (…

data-oriented-design
Which one is faster ? Function call or Conditional if Statement?

Please consider the branch prediction too before answering this question. I have some scenarios where i can replace a conditional …

c++ optimization architecture compiler-optimization data-oriented-design
If-statement vs function pointer

The goal is to change the behaviour in an event loop, depending on whether a checkbox is toggled on or …

c performance if-statement function-pointers data-oriented-design