hardcoded gl3 shaders; extended Image; bmp writer

This commit is contained in:
aap
2016-07-19 18:40:10 +02:00
parent 14547ef830
commit 69356264d7
23 changed files with 1132 additions and 187 deletions

View File

@@ -335,7 +335,7 @@ rasterCreate(Raster *raster)
while(n--){
mipw = w < minW ? minW : w;
miph = h < minH ? minH : h;
ras->texelSize += ALIGN16(mipw*miph*raster->depth/8)
ras->texelSize += ALIGN16(mipw*miph*raster->depth/8);
w /= 2;
h /= 2;
}