ebiten/graphics.go

87 lines
3.3 KiB
Go
Raw Normal View History

// Copyright 2014 Hajime Hoshi
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2014-12-09 15:16:04 +01:00
2014-12-09 14:09:22 +01:00
package ebiten
2013-12-02 13:45:10 +01:00
2014-12-22 20:32:36 +01:00
import (
"github.com/hajimehoshi/ebiten/internal/graphics"
2014-12-22 20:32:36 +01:00
)
// Filter represents the type of texture filter to be used when an image is maginified or minified.
2014-12-31 06:57:51 +01:00
type Filter int
const (
2018-08-30 16:08:16 +02:00
// FilterDefault represents the default filter.
FilterDefault Filter = Filter(graphics.FilterDefault)
2016-08-01 18:47:25 +02:00
// FilterNearest represents nearest (crisp-edged) filter
FilterNearest Filter = Filter(graphics.FilterNearest)
2016-08-01 18:47:25 +02:00
// FilterLinear represents linear filter
FilterLinear Filter = Filter(graphics.FilterLinear)
// filterScreen represents a special filter for screen. Inner usage only.
filterScreen Filter = Filter(graphics.FilterScreen)
)
2014-12-31 06:57:51 +01:00
// CompositeMode represents Porter-Duff composition mode.
type CompositeMode int
// This name convention follows CSS compositing: https://drafts.fxtf.org/compositing-2/.
//
2017-05-02 17:10:23 +02:00
// In the comments,
// c_src, c_dst and c_out represent alpha-premultiplied RGB values of source, destination and output respectively. α_src and α_dst represent alpha values of source and destination respectively.
const (
// Regular alpha blending
// c_out = c_src + c_dst × (1 - α_src)
2018-10-28 12:42:57 +01:00
CompositeModeSourceOver CompositeMode = CompositeMode(graphics.CompositeModeSourceOver)
// c_out = 0
2018-10-28 12:42:57 +01:00
CompositeModeClear CompositeMode = CompositeMode(graphics.CompositeModeClear)
// c_out = c_src
2018-10-28 12:42:57 +01:00
CompositeModeCopy CompositeMode = CompositeMode(graphics.CompositeModeCopy)
// c_out = c_dst
2018-10-28 12:42:57 +01:00
CompositeModeDestination CompositeMode = CompositeMode(graphics.CompositeModeDestination)
// c_out = c_src × (1 - α_dst) + c_dst
2018-10-28 12:42:57 +01:00
CompositeModeDestinationOver CompositeMode = CompositeMode(graphics.CompositeModeDestinationOver)
// c_out = c_src × α_dst
2018-10-28 12:42:57 +01:00
CompositeModeSourceIn CompositeMode = CompositeMode(graphics.CompositeModeSourceIn)
// c_out = c_dst × α_src
2018-10-28 12:42:57 +01:00
CompositeModeDestinationIn CompositeMode = CompositeMode(graphics.CompositeModeDestinationIn)
// c_out = c_src × (1 - α_dst)
2018-10-28 12:42:57 +01:00
CompositeModeSourceOut CompositeMode = CompositeMode(graphics.CompositeModeSourceOut)
// c_out = c_dst × (1 - α_src)
2018-10-28 12:42:57 +01:00
CompositeModeDestinationOut CompositeMode = CompositeMode(graphics.CompositeModeDestinationOut)
// c_out = c_src × α_dst + c_dst × (1 - α_src)
2018-10-28 12:42:57 +01:00
CompositeModeSourceAtop CompositeMode = CompositeMode(graphics.CompositeModeSourceAtop)
// c_out = c_src × (1 - α_dst) + c_dst × α_src
2018-10-28 12:42:57 +01:00
CompositeModeDestinationAtop CompositeMode = CompositeMode(graphics.CompositeModeDestinationAtop)
// c_out = c_src × (1 - α_dst) + c_dst × (1 - α_src)
2018-10-28 12:42:57 +01:00
CompositeModeXor CompositeMode = CompositeMode(graphics.CompositeModeXor)
// Sum of source and destination (a.k.a. 'plus' or 'additive')
// c_out = c_src + c_dst
2018-10-28 12:42:57 +01:00
CompositeModeLighter CompositeMode = CompositeMode(graphics.CompositeModeLighter)
)