Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kunitoki committed Feb 6, 2024
1 parent e4cc9bc commit e03b849
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -967,7 +967,7 @@ void registerJuceGraphicsBindings (pybind11::module_& m)

classPixelAlpha
.def (py::init<>())
.def (py::init ([](uint8 alpha) { auto c = PixelAlpha(); c.setAlpha (alpha); return c; }))
.def (py::init ([](uint8 alpha) { auto c = PixelAlpha(); c.setAlpha (alpha); return c; }))
.def ("getNativeARGB", &PixelAlpha::getNativeARGB)
.def ("getInARGBMaskOrder", &PixelAlpha::getInARGBMaskOrder)
.def ("getInARGBMemoryOrder", &PixelAlpha::getInARGBMemoryOrder)
Expand Down

0 comments on commit e03b849

Please sign in to comment.