// Code generated by 'yaegi extract image/draw'. DO NOT EDIT.

//go:build go1.22
// +build go1.22

package stdlib

import (
	
	
	
	
)

func init() {
	Symbols["image/draw/draw"] = map[string]reflect.Value{
		// function, constant and variable definitions
		"Draw":           reflect.ValueOf(draw.Draw),
		"DrawMask":       reflect.ValueOf(draw.DrawMask),
		"FloydSteinberg": reflect.ValueOf(&draw.FloydSteinberg).Elem(),
		"Over":           reflect.ValueOf(draw.Over),
		"Src":            reflect.ValueOf(draw.Src),

		// type definitions
		"Drawer":      reflect.ValueOf((*draw.Drawer)(nil)),
		"Image":       reflect.ValueOf((*draw.Image)(nil)),
		"Op":          reflect.ValueOf((*draw.Op)(nil)),
		"Quantizer":   reflect.ValueOf((*draw.Quantizer)(nil)),
		"RGBA64Image": reflect.ValueOf((*draw.RGBA64Image)(nil)),

		// interface wrapper definitions
		"_Drawer":      reflect.ValueOf((*_image_draw_Drawer)(nil)),
		"_Image":       reflect.ValueOf((*_image_draw_Image)(nil)),
		"_Quantizer":   reflect.ValueOf((*_image_draw_Quantizer)(nil)),
		"_RGBA64Image": reflect.ValueOf((*_image_draw_RGBA64Image)(nil)),
	}
}

// _image_draw_Drawer is an interface wrapper for Drawer type
type _image_draw_Drawer struct {
	IValue interface{}
	WDraw  func(dst draw.Image, r image.Rectangle, src image.Image, sp image.Point)
}

func ( _image_draw_Drawer) ( draw.Image,  image.Rectangle,  image.Image,  image.Point) {
	.WDraw(, , , )
}

// _image_draw_Image is an interface wrapper for Image type
type _image_draw_Image struct {
	IValue      interface{}
	WAt         func(x int, y int) color.Color
	WBounds     func() image.Rectangle
	WColorModel func() color.Model
	WSet        func(x int, y int, c color.Color)
}

func ( _image_draw_Image) ( int,  int) color.Color {
	return .WAt(, )
}
func ( _image_draw_Image) () image.Rectangle {
	return .WBounds()
}
func ( _image_draw_Image) () color.Model {
	return .WColorModel()
}
func ( _image_draw_Image) ( int,  int,  color.Color) {
	.WSet(, , )
}

// _image_draw_Quantizer is an interface wrapper for Quantizer type
type _image_draw_Quantizer struct {
	IValue    interface{}
	WQuantize func(p color.Palette, m image.Image) color.Palette
}

func ( _image_draw_Quantizer) ( color.Palette,  image.Image) color.Palette {
	return .WQuantize(, )
}

// _image_draw_RGBA64Image is an interface wrapper for RGBA64Image type
type _image_draw_RGBA64Image struct {
	IValue      interface{}
	WAt         func(x int, y int) color.Color
	WBounds     func() image.Rectangle
	WColorModel func() color.Model
	WRGBA64At   func(x int, y int) color.RGBA64
	WSet        func(x int, y int, c color.Color)
	WSetRGBA64  func(x int, y int, c color.RGBA64)
}

func ( _image_draw_RGBA64Image) ( int,  int) color.Color {
	return .WAt(, )
}
func ( _image_draw_RGBA64Image) () image.Rectangle {
	return .WBounds()
}
func ( _image_draw_RGBA64Image) () color.Model {
	return .WColorModel()
}
func ( _image_draw_RGBA64Image) ( int,  int) color.RGBA64 {
	return .WRGBA64At(, )
}
func ( _image_draw_RGBA64Image) ( int,  int,  color.Color) {
	.WSet(, , )
}
func ( _image_draw_RGBA64Image) ( int,  int,  color.RGBA64) {
	.WSetRGBA64(, , )
}