-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
33 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
image/shared/src/main/scala/eu/joaocosta/minart/graphics/image/BmpImageLoader.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package eu.joaocosta.minart.graphics.image | ||
|
||
import eu.joaocosta.minart.graphics.image.helpers._ | ||
|
||
@deprecated("Use eu.joaocosta.minart.graphics.image.bmp.BmpImageFormat instead") | ||
final class BmpImageLoader[F[_]](val byteReader: ByteReader[F]) extends bmp.BmpImageLoader[F] | ||
|
||
object BmpImageLoader { | ||
@deprecated("Use eu.joaocosta.minart.graphics.image.bmp.BmpImageFormat.defaultFormat instead") | ||
val defaultLoader = bmp.BmpImageFormat.defaultFormat | ||
} |
11 changes: 11 additions & 0 deletions
11
image/shared/src/main/scala/eu/joaocosta/minart/graphics/image/PpmImageLoader.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package eu.joaocosta.minart.graphics.image | ||
|
||
import eu.joaocosta.minart.graphics.image.helpers._ | ||
|
||
@deprecated("Use eu.joaocosta.minart.graphics.image.ppm.PpmImageFormat instead") | ||
final class PpmImageLoader[F[_]](val byteReader: ByteReader[F]) extends ppm.PpmImageLoader[F] | ||
|
||
object PpmImageLoader { | ||
@deprecated("Use eu.joaocosta.minart.graphics.image.ppm.PpmImageFormat.defaultFormat instead") | ||
val defaultLoader = ppm.PpmImageFormat.defaultFormat | ||
} |
11 changes: 11 additions & 0 deletions
11
image/shared/src/main/scala/eu/joaocosta/minart/graphics/image/QoiImageLoader.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package eu.joaocosta.minart.graphics.image | ||
|
||
import eu.joaocosta.minart.graphics.image.helpers._ | ||
|
||
@deprecated("Use eu.joaocosta.minart.graphics.image.qoi.QoiImageFormat instead") | ||
final class QoiImageLoader[F[_]](val byteReader: ByteReader[F]) extends qoi.QoiImageLoader[F] | ||
|
||
object QoiImageLoader { | ||
@deprecated("Use eu.joaocosta.minart.graphics.image.qoi.QoiImageFormat.defaultFormat instead") | ||
val defaultLoader = qoi.QoiImageFormat.defaultFormat | ||
} |