Search found 7 matches

by yatagarasu
Wed Sep 22, 2010 2:22 pm
Forum: DS/DSi Development
Topic: grit
Replies: 2
Views: 6366

grit

For no reason grit started to generate *Tiles and *TilesLen variable names for bitmap files.

my .grit file is
-gB16
-gb

am i missing something?
by yatagarasu
Tue Jul 20, 2010 11:49 am
Forum: Announcements
Topic: New site front end
Replies: 16
Views: 64520

Re: New site front end

it's a pity but new front end is completely unusable in Firefox with 'Load images automatically' switched off.
by yatagarasu
Tue Jul 20, 2010 11:47 am
Forum: DS/DSi Development
Topic: GL_CLEAR_BMP
Replies: 3
Views: 4908

Re: GL_CLEAR_BMP

Desmume 0.9.5 show no background.
by yatagarasu
Fri Jul 09, 2010 3:21 pm
Forum: DS/DSi Development
Topic: GL_CLEAR_BMP
Replies: 3
Views: 4908

GL_CLEAR_BMP

Always was curious what GL_CLEAR_BMP is for. And how it works. It was unclear from devkitpro documentation how it can be used. So I decided to do some intelligence work on my own. GL_CLEAR_BMP can be used to set bitmap background for 3D scene. Bitmap colour image is loaded into VRAM_C. Also there is...
by yatagarasu
Thu Mar 18, 2010 3:10 pm
Forum: User Contributions
Topic: cmake
Replies: 6
Views: 10107

Re: cmake

and the devkitPro installer gives you a bash shell under windows. ok. never used it, because I program in Far Manager. and forgot that devkitPro have it. Bash script even simpler to make user friendly =) #!/bin/sh usage="Usage: $0 [Nitro|PSP] [Debug|Release]" if [ $# -eq 2 ]; then mkdir b...
by yatagarasu
Thu Mar 18, 2010 8:31 am
Forum: User Contributions
Topic: cmake
Replies: 6
Views: 10107

Re: cmake

The appealing side of cmake is that it is make file generator. It easily can generate make file for any gnu toolchain and even msvc. I personally use this scripts to build my project on win32, nitro, psp and linux platform. All you need is to switch Toolchain files or use none for native toolchain. ...
by yatagarasu
Wed Mar 17, 2010 3:26 pm
Forum: User Contributions
Topic: cmake
Replies: 6
Views: 10107

cmake

Hi everybody. Here are some cmake scripts for devkitPro development. If you don't know, cmake is cross compiler build system much easier to use than make or auto-tools. Here you can download simple Nintendo ds cmake project http://rghost.net/1182556 Just extract it somewhere. Install latest cmake fo...