Search found 2 matches

by Avatar
Mon Sep 19, 2011 9:57 pm
Forum: Bug Reports
Topic: bug in GX_SetTexCopyDst (libogc)
Replies: 1
Views: 5743

Re: bug in GX_SetTexCopyDst (libogc)

This issue from the sourceforge patches tracker seems to be related, if not the exact same problem:

[libogc] Fix copies to texture targetting GX_TF_IA8 format - ID: 3411308
http://sourceforge.net/tracker/?func=de ... tid=668553
by Avatar
Mon Sep 05, 2011 10:47 pm
Forum: Bug Reports
Topic: bug in GX_SetTexCopyDst (libogc)
Replies: 1
Views: 5743

bug in GX_SetTexCopyDst (libogc)

Only using the following pair of code lines produces the desired result when copying a texture from EBF to main memory: GX_SetTexCopySrc(0, 0, w, h); GX_SetTexCopyDst(w*2, h*2, GX_TF_IA8, FALSE) // <- factors of 2 Shouldn't it be more like GX_SetTexCopySrc(0, 0, w, h); GX_SetTexCopyDst(w, h, GX_TF_I...