mirror of
https://github.com/OpenDiablo2/OpenDiablo2
synced 2024-11-10 06:16:27 -05:00
423cef304d
* Configuration cleanup * Cleanup * Gif animation and screenshot support
25 lines
531 B
Go
25 lines
531 B
Go
package d2render
|
|
|
|
import (
|
|
"image"
|
|
"image/color"
|
|
)
|
|
|
|
type Surface interface {
|
|
Clear(color color.Color) error
|
|
DrawRect(width, height int, color color.Color)
|
|
DrawLine(x, y int, color color.Color)
|
|
DrawText(format string, params ...interface{})
|
|
GetSize() (width, height int)
|
|
GetDepth() int
|
|
Pop()
|
|
PopN(n int)
|
|
PushColor(color color.Color)
|
|
PushCompositeMode(mode CompositeMode)
|
|
PushFilter(filter Filter)
|
|
PushTranslation(x, y int)
|
|
Render(surface Surface) error
|
|
ReplacePixels(pixels []byte) error
|
|
Screenshot() *image.RGBA
|
|
}
|