Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
void SetProjection(mat4 &matr);
const&non-constではなくbyでパラメータを取得しないのはなぜ&ですか?パラメータを変更SetProjectionしていないので、それは間違いのように見えます。
const&
&
SetProjection
そこからコンパイラエラーが発生します。の戻り値perspectiveは一時的なものです。また、非定数によって一時的なものを保存することはできません&。
perspective