mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-22 06:52:20 +00:00
Add missing item to CHANGELOG
This commit is contained in:
parent
d758a9fdbe
commit
78cf06a5a9
3 changed files with 9 additions and 4 deletions
|
@ -5,6 +5,7 @@ All notable changes to this project will be documented in this file.
|
|||
- Removed libpng, zlib, libfreetype and libjpeg from project. These libraries should now be installed with pacman.
|
||||
- GRRLIB and pngu are now installed into the porlibs folder.
|
||||
- Removed uint declaration. u32 should be used instead.
|
||||
- The GRRLIB_CreateEmptyTexture function is not inline anymore
|
||||
|
||||
## [4.3.2] - 2012-08-12
|
||||
- libpng was updated to version 1.5.12
|
||||
|
|
|
@ -27,7 +27,7 @@ THE SOFTWARE.
|
|||
|
||||
/**
|
||||
* Load a ByteMap font structure from a buffer.
|
||||
* File format version 1.1 is used, more information could be found at http://bmf.wz.cz/bmf-format.htm
|
||||
* File format version 1.1 is used, more information could be found at https://bmf.php5.cz/?page=format
|
||||
* @param my_bmf The ByteMap font buffer to load.
|
||||
* @return A GRRLIB_bytemapFont structure filled with BMF information.
|
||||
* @see GRRLIB_FreeBMF
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*------------------------------------------------------------------------------
|
||||
Copyright (c) 2009-2017 The GRRLIB Team
|
||||
Copyright (c) 2009-2019 The GRRLIB Team
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
@ -62,6 +62,10 @@ void GRRLIB_CompoStart (void) {
|
|||
void GRRLIB_CompoEnd(int posx, int posy, GRRLIB_texImg *tex) {
|
||||
GRRLIB_Screen2Texture(posx, posy, tex, GX_TRUE);
|
||||
|
||||
if (rmode->aa) GX_SetPixelFmt(GX_PF_RGB565_Z16, GX_ZC_LINEAR);
|
||||
else GX_SetPixelFmt(GX_PF_RGB8_Z24 , GX_ZC_LINEAR);
|
||||
if (rmode->aa) {
|
||||
GX_SetPixelFmt(GX_PF_RGB565_Z16, GX_ZC_LINEAR);
|
||||
}
|
||||
else {
|
||||
GX_SetPixelFmt(GX_PF_RGB8_Z24 , GX_ZC_LINEAR);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue