rspverif.h 2.15 KB

/**************************************************************************
 *                                                                        *
 *               Copyright (C) 1994, Silicon Graphics, Inc.               *
 *                                                                        *
 *  These coded instructions, statements, and computer programs  contain  *
 *  unpublished  proprietary  information of Silicon Graphics, Inc., and  *
 *  are protected by Federal copyright  law.  They  may not be disclosed  *
 *  to  third  parties  or copied or duplicated in any form, in whole or  *
 *  in part, without the prior written consent of Silicon Graphics, Inc.  *
 *                                                                        *
 *************************************************************************/

/*
 * File:	rspverif.h
 * Creator:	hsa@sgi.com
 * Create Date:	Tue Apr 11 17:51:21 PDT 1995
 *
 */

#define	STATIC_SEGMENT		1
#define	DYNAMIC_SEGMENT		2
#define	TEXTURE_SEGMENT		3

#define	MAX_STATIC_GFX_SIZE	256

#define	SCREEN_HT	240
#define	SCREEN_WD	320

#define	STACKSIZE	0x2000

#define	APP_ZBUFFER	0xd0000

/*
 * ifdef needed because this file is included by "spec"
 */
#ifdef _LANGUAGE_C

/*
 * Layout of our dynamic segment
 */
typedef struct {
	Mtx	projection;
	Mtx	modeling;
	Mtx	viewing;
        Mtx     identity;
        Mtx     model[20];
        Mtx     modelPop[20];
	Vp	viewportMod[17];
	Gfx	glist[512];
} Dynamic;

extern u16	zbuffer[];

extern unsigned short cfb_16_a[];
extern unsigned short cfb_16_b[];

extern Dynamic	dynamic;

extern Gfx	rspinit_dl[];
extern Gfx	rdpinit_dl[];
extern Gfx	clear_zbuffer[];
extern Gfx 	regression_viewport[];

extern Gfx	*glistp;	/* global for test case procs */

extern Gfx *testList[];	/* list of specific test Gfx display lists: */

typedef	void (*CaseProc_t)(Dynamic *, int);
extern CaseProc_t testCaseProcs[];

/* ADD TEST CASE: test frame display lists: */
extern Gfx 	placebo_dl[];
extern Gfx 	square0[];
extern Gfx 	bg_dl[];
extern Gfx 	diag_dl[];
extern Gfx 	ci_test_dl[];

extern u64	dram_stack[];
extern u64	dram_yield[];
extern u64	rdp_output[];
extern u64	rdp_output_len;


#endif	/* _LANGUAGE_C */