graphics: Add a comment about bug #211

This commit is contained in:
Hajime Hoshi 2016-07-01 18:27:01 +09:00
parent cc39cdc8f5
commit 5e892b3887

View File

@ -186,6 +186,8 @@ func (i *Image) Dispose() error {
// This function may be slow (as for implementation, this calls glTexSubImage2D).
//
// This function is concurrent-safe.
//
// BUG(hajimehoshi) This might not work on Android (#211).
func (i *Image) ReplacePixels(p []uint8) error {
return i.impl.ReplacePixels(p)
}