fix function to actually work
This commit is contained in:
parent
032352a5ba
commit
da79f1d8b6
1 changed files with 2 additions and 1 deletions
|
@ -92,7 +92,8 @@ func Scalef(x float32, y float32, z float32) {
|
||||||
|
|
||||||
// MultMatrix - Multiply the current matrix by another matrix
|
// MultMatrix - Multiply the current matrix by another matrix
|
||||||
func MultMatrix(m Matrix) {
|
func MultMatrix(m Matrix) {
|
||||||
C.rlMultMatrixf(MatrixToFloat(m))
|
f := MatrixToFloat(m)
|
||||||
|
C.rlMultMatrixf((*C.float)(&f[0]))
|
||||||
}
|
}
|
||||||
|
|
||||||
// Frustum .
|
// Frustum .
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue