10-09-2012, 04:15 PM
(10-07-2012, 11:31 PM)sum2012 Wrote:Thank you for your research!Code:VideoEngine.java
private void drawBezier(int ucount, int vcount) {
if ((ucount - 1) % 3 != 0 || (vcount - 1) % 3 != 0) {
log.warn("Unsupported bezier parameters ucount=" + ucount + " vcount=" + vcount);
return;
}
if (context.patch_div_s <= 0 || context.patch_div_t <= 0) {
log.warn("Testing fix for Unsupported bezier patches patch_div_s=" + context.patch_div_s + " patch_div_t=" + context.patch_div_t); //change here
if (context.patch_div_s < 1){ context.patch_div_s = 1 ;}//change here
if (context.patch_div_t < 1){ context.patch_div_t = 1;}//change here
// return; //change here
}
initRendering();
...
Second Novel Kanojo no Natsu 15 fun no Kioku Menu
Rev2758
http://imageshack.us/a/img141/1503/menubad.jpg
Rev2758 fixed version
http://imageshack.us/a/img715/8963/menuok.jpg
Hope apply the offical version.Thanks
Edit:Add log file
I've tested different parameter combinations on a real PSP using the splinesurface demo.
The problem should now be fixed in r2760.
Always include a complete log file at INFO level in your reports. Thanks! How to post a log