rlSetMatrixProjectionStereo method

void rlSetMatrixProjectionStereo(
  1. MatrixD right,
  2. MatrixD left
)

Implementation

void rlSetMatrixProjectionStereo(
  MatrixD right,
  MatrixD left,
) => run(
  () => 'rlSetMatrixProjectionStereo($right, $left)',
  () => rl.Rlgl.rlSetMatrixProjectionStereo(
    _refMatrix1(right).ref,
    _refMatrix2(left).ref,
  ),
);