X-Git-Url: https://de.git.xonotic.org/?a=blobdiff_plain;ds=sidebyside;f=gl_backend.h;h=83125962ba5c081d161ef583c2be19bd130f34e9;hb=9168bc2cbb2230dd8147be0b5aa31cf4a1404745;hp=72acc7b2eb0bb311e31e432cc53f9c26a4fba6de;hpb=c22ec98a144f18d7519eb4a06dd1ee8937e8c4ac;p=xonotic%2Fdarkplaces.git diff --git a/gl_backend.h b/gl_backend.h index 72acc7b2..83125962 100644 --- a/gl_backend.h +++ b/gl_backend.h @@ -92,6 +92,8 @@ void R_Mesh_CopyVertex3f(const float *vertex3f, int numverts); void R_Mesh_CopyTexCoord2f(int tmu, const float *texcoord2f, int numverts); // copies a color4f array into varray_color4f void R_Mesh_CopyColor4f(const float *color4f, int numverts); +// copies a texcoord2f array into another array, with scrolling +void R_ScrollTexCoord2f (float *out2f, const float *in2f, int numverts, float s, float t); // saves a section of the rendered frame to a .tga or .jpg file qboolean SCR_ScreenShot(char *filename, int x, int y, int width, int height, qboolean jpeg);