mirror of
https://github.com/Q3Rally-Team/q3rally.git
synced 2024-11-29 15:12:07 +00:00
e7405e98df
OpenGL2: Use an OpenGL 3.2 core context if available OpenGL2: Remove GLSL_ValidateProgram() OpenGL2: Don't do MSAA resolve/shadow mask/SSAO on shadow views OpenGL2: "Fix" cg_shadows 4 Fix score bonus for defending the flag carrier in CTF Restore not giving defense score bonus to flag carrier Add score bonus for defending the flag carrier in 1 Flag CTF Move CON_Init ahead of Com_Init to avoid Windows dedicated server crash Make 'globalservers 0' fetch all masters OpenGL2: Don't use initialized arrays in glsl shaders Echo server say/tell/sayto message to console Don't try to remove non-existant command 'shaderstate' Update internal curl to 7.54.0 Silence g_util.c warning about set but not read variable Remove unused imgFlag_t value IMGFLAG_SRGB Make warmup in Team Deathmatch wait for players to join both teams Remove CVAR_PROTECTED from cl_renderer Fix/improve buffer overflow in MSG_ReadBits/MSG_WriteBits Fix friction in AAS_ClientMovementPrediction Fix floating point precision loss in renderer Reject OpenGL contexts w/ software renderer when core context requested
300 lines
12 KiB
C
300 lines
12 KiB
C
#ifndef __CURL_MPRINTF_H
|
|
#define __CURL_MPRINTF_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h> /* needed for FILE */
|
|
#include "curl.h" /* for CURL_EXTERN */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
CURL_EXTERN int curl_mprintf(const char *format, ...);
|
|
CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
|
|
CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...);
|
|
CURL_EXTERN int curl_msnprintf(char *buffer, size_t maxlength,
|
|
const char *format, ...);
|
|
CURL_EXTERN int curl_mvprintf(const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvsnprintf(char *buffer, size_t maxlength,
|
|
const char *format, va_list args);
|
|
CURL_EXTERN char *curl_maprintf(const char *format, ...);
|
|
CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __CURL_MPRINTF_H */
|
|
#ifndef __CURL_MPRINTF_H
|
|
#define __CURL_MPRINTF_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h> /* needed for FILE */
|
|
#include "curl.h" /* for CURL_EXTERN */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
CURL_EXTERN int curl_mprintf(const char *format, ...);
|
|
CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
|
|
CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...);
|
|
CURL_EXTERN int curl_msnprintf(char *buffer, size_t maxlength,
|
|
const char *format, ...);
|
|
CURL_EXTERN int curl_mvprintf(const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvsnprintf(char *buffer, size_t maxlength,
|
|
const char *format, va_list args);
|
|
CURL_EXTERN char *curl_maprintf(const char *format, ...);
|
|
CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __CURL_MPRINTF_H */
|
|
#ifndef __CURL_MPRINTF_H
|
|
#define __CURL_MPRINTF_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h> /* needed for FILE */
|
|
#include "curl.h" /* for CURL_EXTERN */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
CURL_EXTERN int curl_mprintf(const char *format, ...);
|
|
CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
|
|
CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...);
|
|
CURL_EXTERN int curl_msnprintf(char *buffer, size_t maxlength,
|
|
const char *format, ...);
|
|
CURL_EXTERN int curl_mvprintf(const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvsnprintf(char *buffer, size_t maxlength,
|
|
const char *format, va_list args);
|
|
CURL_EXTERN char *curl_maprintf(const char *format, ...);
|
|
CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __CURL_MPRINTF_H */
|
|
#ifndef __CURL_MPRINTF_H
|
|
#define __CURL_MPRINTF_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h> /* needed for FILE */
|
|
#include "curl.h" /* for CURL_EXTERN */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
CURL_EXTERN int curl_mprintf(const char *format, ...);
|
|
CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
|
|
CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...);
|
|
CURL_EXTERN int curl_msnprintf(char *buffer, size_t maxlength,
|
|
const char *format, ...);
|
|
CURL_EXTERN int curl_mvprintf(const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvsnprintf(char *buffer, size_t maxlength,
|
|
const char *format, va_list args);
|
|
CURL_EXTERN char *curl_maprintf(const char *format, ...);
|
|
CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __CURL_MPRINTF_H */
|
|
#ifndef __CURL_MPRINTF_H
|
|
#define __CURL_MPRINTF_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h> /* needed for FILE */
|
|
#include "curl.h" /* for CURL_EXTERN */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
CURL_EXTERN int curl_mprintf(const char *format, ...);
|
|
CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
|
|
CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...);
|
|
CURL_EXTERN int curl_msnprintf(char *buffer, size_t maxlength,
|
|
const char *format, ...);
|
|
CURL_EXTERN int curl_mvprintf(const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvsnprintf(char *buffer, size_t maxlength,
|
|
const char *format, va_list args);
|
|
CURL_EXTERN char *curl_maprintf(const char *format, ...);
|
|
CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __CURL_MPRINTF_H */
|
|
#ifndef __CURL_MPRINTF_H
|
|
#define __CURL_MPRINTF_H
|
|
/***************************************************************************
|
|
* _ _ ____ _
|
|
* Project ___| | | | _ \| |
|
|
* / __| | | | |_) | |
|
|
* | (__| |_| | _ <| |___
|
|
* \___|\___/|_| \_\_____|
|
|
*
|
|
* Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
*
|
|
* This software is licensed as described in the file COPYING, which
|
|
* you should have received as part of this distribution. The terms
|
|
* are also available at https://curl.haxx.se/docs/copyright.html.
|
|
*
|
|
* You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
* copies of the Software, and permit persons to whom the Software is
|
|
* furnished to do so, under the terms of the COPYING file.
|
|
*
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
* KIND, either express or implied.
|
|
*
|
|
***************************************************************************/
|
|
|
|
#include <stdarg.h>
|
|
#include <stdio.h> /* needed for FILE */
|
|
#include "curl.h" /* for CURL_EXTERN */
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
CURL_EXTERN int curl_mprintf(const char *format, ...);
|
|
CURL_EXTERN int curl_mfprintf(FILE *fd, const char *format, ...);
|
|
CURL_EXTERN int curl_msprintf(char *buffer, const char *format, ...);
|
|
CURL_EXTERN int curl_msnprintf(char *buffer, size_t maxlength,
|
|
const char *format, ...);
|
|
CURL_EXTERN int curl_mvprintf(const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvfprintf(FILE *fd, const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvsprintf(char *buffer, const char *format, va_list args);
|
|
CURL_EXTERN int curl_mvsnprintf(char *buffer, size_t maxlength,
|
|
const char *format, va_list args);
|
|
CURL_EXTERN char *curl_maprintf(const char *format, ...);
|
|
CURL_EXTERN char *curl_mvaprintf(const char *format, va_list args);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __CURL_MPRINTF_H */
|