X-Git-Url: http://git.xonotic.org/?a=blobdiff_plain;f=image.h;h=5b5cbdaaad955f3287c2ef280a9c6edc0ee89c28;hb=755bd4fe5e014d75df2298e49ed3de637dea4404;hp=21dc012327b2c6b303b41156171dbfcf8c28f50e;hpb=0766a43538f3b526cba347157d5259bb3e5785a9;p=xonotic%2Fdarkplaces.git diff --git a/image.h b/image.h index 21dc0123..5b5cbdaa 100644 --- a/image.h +++ b/image.h @@ -56,7 +56,7 @@ void Image_MipReduce32(const unsigned char *in, unsigned char *out, int *width, void Image_HeightmapToNormalmap_BGRA(const unsigned char *inpixels, unsigned char *outpixels, int width, int height, int clamp, float bumpscale); // console command to fix the colors of transparent pixels (to prevent weird borders) -void Image_FixTransparentPixels_f(void); +void Image_FixTransparentPixels_f(cmd_state_t *cmd); extern cvar_t r_fixtrans_auto; #define Image_LinearFloatFromsRGBFloat(c) (((c) <= 0.04045f) ? (c) * (1.0f / 12.92f) : (float)pow(((c) + 0.055f)*(1.0f/1.055f), 2.4f))