all: update comments

This commit is contained in:
Hajime Hoshi 2024-08-18 11:14:25 +09:00
parent 8f32cc19c5
commit ba1af60480
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ import (
"github.com/hajimehoshi/ebiten/v2/internal/affine" "github.com/hajimehoshi/ebiten/v2/internal/affine"
) )
// ColorMDim is a dimension of a ColorM. // ColorMDim is the dimension of a ColorM.
// //
// Deprecated: as of v2.5. Use the colorm package instead. // Deprecated: as of v2.5. Use the colorm package instead.
const ColorMDim = affine.ColorMDim const ColorMDim = affine.ColorMDim

View File

@ -24,7 +24,7 @@ import (
"github.com/hajimehoshi/ebiten/v2/internal/builtinshader" "github.com/hajimehoshi/ebiten/v2/internal/builtinshader"
) )
// Dim is a dimension of a ColorM. // Dim is the dimension of a ColorM.
const Dim = affine.ColorMDim const Dim = affine.ColorMDim
// ColorM represents a matrix to transform coloring when rendering an image. // ColorM represents a matrix to transform coloring when rendering an image.