Revert "graphics: Fix comments"

This reverts commit 7ac1f62c52.
This commit is contained in:
Hajime Hoshi 2019-11-16 02:04:31 +09:00
parent 7ac1f62c52
commit 75a88fd112

View File

@ -432,8 +432,8 @@ func (i *Image) Dispose() error {
//
// The given p must represent RGBA pre-multiplied alpha values. len(p) must equal to 4 * (image width) * (image height).
//
// As of 1.11.0-alpha, ReplacePixels takes the ownership of the given p. This means that p must not be modified
// after ReplacePixels is called.
// ReplacePixels takes the ownership of the given p. This means that p must not be modified after ReplacePixels is
// called.
//
// ReplacePixels may be slow (as for implementation, this calls glTexSubImage2D).
//