forked from joejulian/gio
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