mirror of
https://github.com/GRRLIB/GRRLIB.git
synced 2024-11-10 10:22:20 +00:00
[CHG] Added the Links section to the doc main page
This commit is contained in:
parent
b17f304c17
commit
9a4bdc04ae
2 changed files with 30 additions and 23 deletions
|
@ -49,12 +49,13 @@ void GRRLIB_DrawImg (const f32 xpos, const f32 ypos, const GRRLIB_texImg *tex,
|
||||||
GX_InitTexObj(&texObj, tex->data, tex->w, tex->h,
|
GX_InitTexObj(&texObj, tex->data, tex->w, tex->h,
|
||||||
GX_TF_RGBA8, GX_CLAMP, GX_CLAMP, GX_FALSE);
|
GX_TF_RGBA8, GX_CLAMP, GX_CLAMP, GX_FALSE);
|
||||||
|
|
||||||
GX_SetCopyFilter(rmode->aa, rmode->sample_pattern, GX_TRUE, rmode->vfilter);
|
if (GRRLIB_Settings.antialias == false) {
|
||||||
|
|
||||||
if (GRRLIB_Settings.antialias == false){
|
|
||||||
GX_InitTexObjLOD(&texObj, GX_NEAR, GX_NEAR,
|
GX_InitTexObjLOD(&texObj, GX_NEAR, GX_NEAR,
|
||||||
0.0f, 0.0f, 0.0f, 0, 0, GX_ANISO_1);
|
0.0f, 0.0f, 0.0f, 0, 0, GX_ANISO_1);
|
||||||
GX_SetCopyFilter(GX_FALSE, rmode->sample_pattern, GX_FALSE, rmode->vfilter);
|
GX_SetCopyFilter(GX_FALSE, rmode->sample_pattern, GX_FALSE, rmode->vfilter);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
GX_SetCopyFilter(rmode->aa, rmode->sample_pattern, GX_TRUE, rmode->vfilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
GX_LoadTexObj(&texObj, GX_TEXMAP0);
|
GX_LoadTexObj(&texObj, GX_TEXMAP0);
|
||||||
|
@ -118,15 +119,14 @@ void GRRLIB_DrawImgQuad (const guVector pos[4], GRRLIB_texImg *tex, const u32 c
|
||||||
GX_InitTexObj(&texObj, tex->data, tex->w, tex->h,
|
GX_InitTexObj(&texObj, tex->data, tex->w, tex->h,
|
||||||
GX_TF_RGBA8, GX_CLAMP, GX_CLAMP, GX_FALSE);
|
GX_TF_RGBA8, GX_CLAMP, GX_CLAMP, GX_FALSE);
|
||||||
|
|
||||||
|
if (GRRLIB_Settings.antialias == false) {
|
||||||
GX_SetCopyFilter(rmode->aa, rmode->sample_pattern, GX_TRUE, rmode->vfilter);
|
|
||||||
|
|
||||||
if (GRRLIB_Settings.antialias == false){
|
|
||||||
GX_InitTexObjLOD(&texObj, GX_NEAR, GX_NEAR,
|
GX_InitTexObjLOD(&texObj, GX_NEAR, GX_NEAR,
|
||||||
0.0f, 0.0f, 0.0f, 0, 0, GX_ANISO_1);
|
0.0f, 0.0f, 0.0f, 0, 0, GX_ANISO_1);
|
||||||
GX_SetCopyFilter(GX_FALSE, rmode->sample_pattern, GX_FALSE, rmode->vfilter);
|
GX_SetCopyFilter(GX_FALSE, rmode->sample_pattern, GX_FALSE, rmode->vfilter);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
GX_SetCopyFilter(rmode->aa, rmode->sample_pattern, GX_TRUE, rmode->vfilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
GX_LoadTexObj(&texObj, GX_TEXMAP0);
|
GX_LoadTexObj(&texObj, GX_TEXMAP0);
|
||||||
GX_SetTevOp (GX_TEVSTAGE0, GX_MODULATE);
|
GX_SetTevOp (GX_TEVSTAGE0, GX_MODULATE);
|
||||||
|
@ -191,14 +191,14 @@ void GRRLIB_DrawTile (const f32 xpos, const f32 ypos, const GRRLIB_texImg *tex,
|
||||||
tex->tilew * tex->nbtilew, tex->tileh * tex->nbtileh,
|
tex->tilew * tex->nbtilew, tex->tileh * tex->nbtileh,
|
||||||
GX_TF_RGBA8, GX_CLAMP, GX_CLAMP, GX_FALSE);
|
GX_TF_RGBA8, GX_CLAMP, GX_CLAMP, GX_FALSE);
|
||||||
|
|
||||||
GX_SetCopyFilter(rmode->aa, rmode->sample_pattern, GX_TRUE, rmode->vfilter);
|
if (GRRLIB_Settings.antialias == false) {
|
||||||
|
|
||||||
if (GRRLIB_Settings.antialias == false){
|
|
||||||
GX_InitTexObjLOD(&texObj, GX_NEAR, GX_NEAR,
|
GX_InitTexObjLOD(&texObj, GX_NEAR, GX_NEAR,
|
||||||
0.0f, 0.0f, 0.0f, 0, 0, GX_ANISO_1);
|
0.0f, 0.0f, 0.0f, 0, 0, GX_ANISO_1);
|
||||||
GX_SetCopyFilter(GX_FALSE, rmode->sample_pattern, GX_FALSE, rmode->vfilter);
|
GX_SetCopyFilter(GX_FALSE, rmode->sample_pattern, GX_FALSE, rmode->vfilter);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
GX_SetCopyFilter(rmode->aa, rmode->sample_pattern, GX_TRUE, rmode->vfilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
GX_LoadTexObj(&texObj, GX_TEXMAP0);
|
GX_LoadTexObj(&texObj, GX_TEXMAP0);
|
||||||
GX_SetTevOp (GX_TEVSTAGE0, GX_MODULATE);
|
GX_SetTevOp (GX_TEVSTAGE0, GX_MODULATE);
|
||||||
|
@ -279,12 +279,13 @@ void GRRLIB_DrawPart (const f32 xpos, const f32 ypos, const f32 partx, const f3
|
||||||
tex->w, tex->h,
|
tex->w, tex->h,
|
||||||
GX_TF_RGBA8, GX_CLAMP, GX_CLAMP, GX_FALSE);
|
GX_TF_RGBA8, GX_CLAMP, GX_CLAMP, GX_FALSE);
|
||||||
|
|
||||||
GX_SetCopyFilter(rmode->aa, rmode->sample_pattern, GX_TRUE, rmode->vfilter);
|
if (GRRLIB_Settings.antialias == false) {
|
||||||
|
|
||||||
if (GRRLIB_Settings.antialias == false){
|
|
||||||
GX_InitTexObjLOD(&texObj, GX_NEAR, GX_NEAR,
|
GX_InitTexObjLOD(&texObj, GX_NEAR, GX_NEAR,
|
||||||
0.0f, 0.0f, 0.0f, 0, 0, GX_ANISO_1);
|
0.0f, 0.0f, 0.0f, 0, 0, GX_ANISO_1);
|
||||||
GX_SetCopyFilter(GX_FALSE, rmode->sample_pattern, GX_FALSE, rmode->vfilter);
|
GX_SetCopyFilter(GX_FALSE, rmode->sample_pattern, GX_FALSE, rmode->vfilter);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
GX_SetCopyFilter(rmode->aa, rmode->sample_pattern, GX_TRUE, rmode->vfilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
GX_LoadTexObj(&texObj, GX_TEXMAP0);
|
GX_LoadTexObj(&texObj, GX_TEXMAP0);
|
||||||
|
@ -358,12 +359,13 @@ void GRRLIB_DrawTileQuad (const guVector pos[4], GRRLIB_texImg *tex, const u32
|
||||||
tex->tilew * tex->nbtilew, tex->tileh * tex->nbtileh,
|
tex->tilew * tex->nbtilew, tex->tileh * tex->nbtileh,
|
||||||
GX_TF_RGBA8, GX_CLAMP, GX_CLAMP, GX_FALSE);
|
GX_TF_RGBA8, GX_CLAMP, GX_CLAMP, GX_FALSE);
|
||||||
|
|
||||||
GX_SetCopyFilter(rmode->aa, rmode->sample_pattern, GX_TRUE, rmode->vfilter);
|
if (GRRLIB_Settings.antialias == false) {
|
||||||
|
|
||||||
if (GRRLIB_Settings.antialias == false){
|
|
||||||
GX_InitTexObjLOD(&texObj, GX_NEAR, GX_NEAR,
|
GX_InitTexObjLOD(&texObj, GX_NEAR, GX_NEAR,
|
||||||
0.0f, 0.0f, 0.0f, 0, 0, GX_ANISO_1);
|
0.0f, 0.0f, 0.0f, 0, 0, GX_ANISO_1);
|
||||||
GX_SetCopyFilter(GX_FALSE, rmode->sample_pattern, GX_FALSE, rmode->vfilter);
|
GX_SetCopyFilter(GX_FALSE, rmode->sample_pattern, GX_FALSE, rmode->vfilter);
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
GX_SetCopyFilter(rmode->aa, rmode->sample_pattern, GX_TRUE, rmode->vfilter);
|
||||||
}
|
}
|
||||||
|
|
||||||
GX_LoadTexObj(&texObj, GX_TEXMAP0);
|
GX_LoadTexObj(&texObj, GX_TEXMAP0);
|
||||||
|
|
|
@ -238,6 +238,11 @@ GRR_EXTERN void *TrashTex;
|
||||||
* GRRLIB is a C/C++ 2D Graphics library for Wii application developers.
|
* GRRLIB is a C/C++ 2D Graphics library for Wii application developers.
|
||||||
* It is essentially a wrapper which presents a friendly interface to the Nintendo GX core.
|
* It is essentially a wrapper which presents a friendly interface to the Nintendo GX core.
|
||||||
*
|
*
|
||||||
|
* @section Links
|
||||||
|
* Forum: http://grrlib.santo.fr/forum\n
|
||||||
|
* Code: http://code.google.com/p/grrlib\n
|
||||||
|
* IRC: <a href="irc://irc.efnet.net/grrlib">##GRRLIB</a> on EFnet
|
||||||
|
*
|
||||||
* @section Credits
|
* @section Credits
|
||||||
* Project Leader : NoNameNo\n
|
* Project Leader : NoNameNo\n
|
||||||
* Documentation : Crayon, BlueChip\n
|
* Documentation : Crayon, BlueChip\n
|
||||||
|
|
Loading…
Reference in a new issue