You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 31, 2022. It is now read-only.
Found through inkyblackness/imgui-go#98 , running an example with go run -race -tags 'sdl' ., the race detector will fail at the call to gl.VertexAttribPointer(..., unsafe.Pointer(...)) .
This is due to the wrong signature of gl.VertexAttribPointer(), which should actually use uintptr as the last parameter.
This needs a fix in the lower library, tracked here: go-gl/gl#124
The text was updated successfully, but these errors were encountered:
Found through inkyblackness/imgui-go#98 , running an example with
go run -race -tags 'sdl' .
, the race detector will fail at the call togl.VertexAttribPointer(..., unsafe.Pointer(...))
.This is due to the wrong signature of
gl.VertexAttribPointer()
, which should actually useuintptr
as the last parameter.This needs a fix in the lower library, tracked here: go-gl/gl#124
The text was updated successfully, but these errors were encountered: