mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-02-18 01:52:09 +00:00
updating the changelog
This commit is contained in:
parent
60df01b76c
commit
eb132b04cb
2 changed files with 15 additions and 12 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
- Updated the ioq3 base Reaction is based on to ioq3 svn version 2322
|
||||||
- Scale map lights by 0.66 and sunlight by 0.33 when r_testSunlight 1
|
- Scale map lights by 0.66 and sunlight by 0.33 when r_testSunlight 1
|
||||||
- Offset shadowmap samples by surface normal and reenable PCF
|
- Offset shadowmap samples by surface normal and reenable PCF
|
||||||
- Reenabled per vertex tangent space values, fixes visual issues in normal maps
|
- Reenabled per vertex tangent space values, fixes visual issues in normal maps
|
||||||
|
|
|
@ -5,7 +5,7 @@ static const char yysccsid[] = "@(#)yaccpar 1.9 (Berkeley) 02/21/93";
|
||||||
#define YYBYACC 1
|
#define YYBYACC 1
|
||||||
#define YYMAJOR 1
|
#define YYMAJOR 1
|
||||||
#define YYMINOR 9
|
#define YYMINOR 9
|
||||||
#define YYPATCH 20101229
|
#define YYPATCH 20111219
|
||||||
|
|
||||||
#define YYEMPTY (-1)
|
#define YYEMPTY (-1)
|
||||||
#define yyclearin (yychar = YYEMPTY)
|
#define yyclearin (yychar = YYEMPTY)
|
||||||
|
@ -36,6 +36,7 @@ typedef union {
|
||||||
} YYSTYPE;
|
} YYSTYPE;
|
||||||
#endif /* !YYSTYPE_IS_DECLARED */
|
#endif /* !YYSTYPE_IS_DECLARED */
|
||||||
#line 38 "y.tab.c"
|
#line 38 "y.tab.c"
|
||||||
|
|
||||||
/* compatibility with bison */
|
/* compatibility with bison */
|
||||||
#ifdef YYPARSE_PARAM
|
#ifdef YYPARSE_PARAM
|
||||||
/* compatibility with FreeBSD */
|
/* compatibility with FreeBSD */
|
||||||
|
@ -201,6 +202,15 @@ static const char *yyrule[] = {
|
||||||
|
|
||||||
};
|
};
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
int yydebug;
|
||||||
|
int yynerrs;
|
||||||
|
|
||||||
|
int yyerrflag;
|
||||||
|
int yychar;
|
||||||
|
YYSTYPE yyval;
|
||||||
|
YYSTYPE yylval;
|
||||||
|
|
||||||
/* define the initial stack-sizes */
|
/* define the initial stack-sizes */
|
||||||
#ifdef YYSTACKSIZE
|
#ifdef YYSTACKSIZE
|
||||||
#undef YYMAXDEPTH
|
#undef YYMAXDEPTH
|
||||||
|
@ -209,16 +219,13 @@ static const char *yyrule[] = {
|
||||||
#ifdef YYMAXDEPTH
|
#ifdef YYMAXDEPTH
|
||||||
#define YYSTACKSIZE YYMAXDEPTH
|
#define YYSTACKSIZE YYMAXDEPTH
|
||||||
#else
|
#else
|
||||||
#define YYSTACKSIZE 500
|
#define YYSTACKSIZE 10000
|
||||||
#define YYMAXDEPTH 500
|
#define YYMAXDEPTH 500
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define YYINITSTACKSIZE 500
|
#define YYINITSTACKSIZE 500
|
||||||
|
|
||||||
int yydebug;
|
|
||||||
int yynerrs;
|
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
unsigned stacksize;
|
unsigned stacksize;
|
||||||
short *s_base;
|
short *s_base;
|
||||||
|
@ -227,11 +234,6 @@ typedef struct {
|
||||||
YYSTYPE *l_base;
|
YYSTYPE *l_base;
|
||||||
YYSTYPE *l_mark;
|
YYSTYPE *l_mark;
|
||||||
} YYSTACKDATA;
|
} YYSTACKDATA;
|
||||||
int yyerrflag;
|
|
||||||
int yychar;
|
|
||||||
YYSTYPE yyval;
|
|
||||||
YYSTYPE yylval;
|
|
||||||
|
|
||||||
/* variables for the parser stack */
|
/* variables for the parser stack */
|
||||||
static YYSTACKDATA yystack;
|
static YYSTACKDATA yystack;
|
||||||
#line 60 "code/tools/lcc/lburg/gram.y"
|
#line 60 "code/tools/lcc/lburg/gram.y"
|
||||||
|
@ -378,7 +380,7 @@ void yywarn(char *fmt, ...) {
|
||||||
fprintf(stderr, "warning: ");
|
fprintf(stderr, "warning: ");
|
||||||
vfprintf(stderr, fmt, ap);
|
vfprintf(stderr, fmt, ap);
|
||||||
}
|
}
|
||||||
#line 381 "y.tab.c"
|
#line 383 "y.tab.c"
|
||||||
|
|
||||||
#if YYDEBUG
|
#if YYDEBUG
|
||||||
#include <stdio.h> /* needed for printf */
|
#include <stdio.h> /* needed for printf */
|
||||||
|
@ -635,7 +637,7 @@ case 19:
|
||||||
#line 57 "code/tools/lcc/lburg/gram.y"
|
#line 57 "code/tools/lcc/lburg/gram.y"
|
||||||
{ if (*yystack.l_mark[0].string == 0) yyval.string = "0"; }
|
{ if (*yystack.l_mark[0].string == 0) yyval.string = "0"; }
|
||||||
break;
|
break;
|
||||||
#line 638 "y.tab.c"
|
#line 640 "y.tab.c"
|
||||||
}
|
}
|
||||||
yystack.s_mark -= yym;
|
yystack.s_mark -= yym;
|
||||||
yystate = *yystack.s_mark;
|
yystate = *yystack.s_mark;
|
||||||
|
|
Loading…
Reference in a new issue