Search found 2 matches

by Raid
Sun Apr 25, 2010 3:34 am
Forum: Suggestions and Feedback
Topic: decreasing executable size with gcc options
Replies: 4
Views: 11000

Re: decreasing executable size with gcc options

I know this topic is a bit old, but, if anyone is curious..

I'm assuming you're using devkitARM .
Open devkitARM/base_rules , and add:


export STRIP := $(PREFIX)strip


Then in devkitARM/ds_rules , add:


@echo stripping $(notdir $@)
@$(STRIP) -s $@


To the very bottom of the file in the ...
by Raid
Tue Apr 20, 2010 5:04 am
Forum: Bug Reports
Topic: videoGL.h -- glScalef32 not accepting 3 parameters
Replies: 0
Views: 4263

videoGL.h -- glScalef32 not accepting 3 parameters

Looking at the procedure 'glScalef' in videoGL.h, I see that there is 3 int32's being set to the MATRIX_SCALE address.
This is correct. This turns the floats from the parameters into int32's. The procedure tells me to use glScalef32 (with preconverted floats I assume of course).

Looking at ...