Update for latest dkA & gpu_revamp

This commit is contained in:
fincs 2015-03-04 11:12:22 +01:00
parent e7d0632224
commit cd57cf8d3f
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ INCLUDES := include
#--------------------------------------------------------------------------------- #---------------------------------------------------------------------------------
# options for code generation # options for code generation
#--------------------------------------------------------------------------------- #---------------------------------------------------------------------------------
ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=softfp ARCH := -march=armv6k -mtune=mpcore -mfloat-abi=hard
CFLAGS := -g -Wall -O2 -mword-relocations \ CFLAGS := -g -Wall -O2 -mword-relocations \
-fomit-frame-pointer -ffast-math \ -fomit-frame-pointer -ffast-math \

View File

@ -34,7 +34,7 @@ void C3D_UpdateUniforms(void)
*/ */
// Upload the uniforms // Upload the uniforms
GPU_SetUniform(i, (u32*)&C3D_FVUnif[i], j-i); GPU_SetFloatUniform(GPU_VERTEX_SHADER, i, (u32*)&C3D_FVUnif[i], j-i);
// Clear the dirty flag // Clear the dirty flag
int k; int k;