mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 07:35:40 +00:00
internal/gl: remove redundant parentheses
Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
@@ -541,7 +541,7 @@ func (f *Functions) MapBufferRange(target Enum, offset, length int, access Enum)
|
||||
if p == nil {
|
||||
return nil
|
||||
}
|
||||
return (*([1 << 30]byte))(p)[:length:length]
|
||||
return (*[1 << 30]byte)(p)[:length:length]
|
||||
}
|
||||
|
||||
func (f *Functions) Scissor(x, y, width, height int32) {
|
||||
|
||||
Reference in New Issue
Block a user