12 code results in id-Software/Quake

C
QW/client/d_iface.h
Showing the top match Last indexed Sep 14, 2016
20 // d_iface.h: interface header file for rasterization driver modules
21
22 #define WARP_WIDTH 320
23 #define WARP_HEIGHT 200
24
25 #define MAX_LBM_HEIGHT 200
26
27 typedef struct
C
QW/client/glquake2.h
Showing the top match Last indexed Sep 14, 2016
64 // 1 pixel per triangle
65 #define MAX_LBM_HEIGHT 480
66
67 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
C
WinQuake/d_iface.h
Showing the top match Last indexed Sep 14, 2016
20 // d_iface.h: interface header file for rasterization driver modules
21
22 #define WARP_WIDTH 320
23 #define WARP_HEIGHT 200
24
25 #define MAX_LBM_HEIGHT 480
26
27 typedef struct
C
WinQuake/glquake.h
Showing the top match Last indexed Sep 14, 2016
86 // 1 pixel per triangle
87 #define MAX_LBM_HEIGHT 480
88
89 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
C
WinQuake/glquake2.h
Showing the top match Last indexed Sep 14, 2016
82 // normalizing factor so player model works out to about
83 // 1 pixel per triangle
84 #define MAX_LBM_HEIGHT 480
85
86 #define TILE_SIZE 128 // size of textures generated by R_GenTiledSurf
C
QW/client/glquake.h
Showing the top match Last indexed Sep 14, 2016
83 #define ALIAS_BASE_SIZE_RATIO (1.0 / 11.0)
84 // normalizing factor so player model works out to about
85 // 1 pixel per triangle
86 #define MAX_LBM_HEIGHT 480
C
QW/client/d_polyse.c
Showing the top two matches Last indexed Sep 14, 2016
105 byte *skintable[MAX_LBM_HEIGHT];
106 int skinwidth;
107 byte *skinstart;
108
109 void D_PolysetDrawSpans8 (spanpackage_t *pspanpackage);
406 skinstart = r_affinetridesc.pskin;
407 s = skinstart;
408 for (i=0 ; i<MAX_LBM_HEIGHT ; i++, s+=skinwidth)
409 skintable[i] = s;
C
WinQuake/d_polyse.c
Showing the top two matches Last indexed Sep 14, 2016
105 byte *skintable[MAX_LBM_HEIGHT];
106 int skinwidth;
107 byte *skinstart;
108
109 void D_PolysetDrawSpans8 (spanpackage_t *pspanpackage);
406 skinstart = r_affinetridesc.pskin;
407 s = skinstart;
408 for (i=0 ; i<MAX_LBM_HEIGHT ; i++, s+=skinwidth)
409 skintable[i] = s;
C
QW/client/gl_model.c
Showing the top two matches Last indexed Sep 14, 2016
1575 if (pheader->skinheight > MAX_LBM_HEIGHT)
1576 Sys_Error ("model %s has a skin taller than %d", mod->name,
1577 MAX_LBM_HEIGHT);
1578
1579 pheader->numverts = LittleLong (pinmodel->numverts);
1580
1581 if (pheader->numverts <= 0)
C
QW/client/model.c
Showing the top two matches Last indexed Sep 14, 2016
1513 pmodel->skinheight = LittleLong (pinmodel->skinheight);
1514
1515 if (pmodel->skinheight > MAX_LBM_HEIGHT)
1516 Sys_Error ("model %s has a skin taller than %d", mod->name,
1517 MAX_LBM_HEIGHT);
1518
1519 pmodel->numverts = LittleLong (pinmodel->numverts);

Languages