KallistiOS git master
Independent SDK for the Sega Dreamcast
Loading...
Searching...
No Matches
pvr.h
Go to the documentation of this file.
1/* KallistiOS ##version##
2
3 dc/pvr.h
4 Copyright (C) 2002 Megan Potter
5 Copyright (C) 2014 Lawrence Sebald
6 Copyright (C) 2023 Ruslan Rostovtsev
7
8 Low-level PVR 3D interface for the DC
9*/
10
11/** \file dc/pvr.h
12 \brief Low-level PVR (3D hardware) interface.
13 \ingroup pvr
14
15 This file provides support for using the PVR 3D hardware in the Dreamcast.
16 Note that this does not handle any sort of perspective transformations or
17 anything of the like. This is just a very thin wrapper around the actual
18 hardware support.
19
20 This file is used for pretty much everything related to the PVR, from memory
21 management to actual primitive rendering.
22
23 \note
24 This API does \a not handle any sort of transformations
25 (including perspective!) so for that, you should look to KGL.
26
27 \author Megan Potter
28 \author Roger Cattermole
29 \author Paul Boese
30 \author Brian Paul
31 \author Lawrence Sebald
32 \author Benoit Miller
33 \author Ruslan Rostovtsev
34*/
35
36#ifndef __DC_PVR_H
37#define __DC_PVR_H
38
39#include <sys/cdefs.h>
40__BEGIN_DECLS
41
42#include <stdalign.h>
43#include <stdbool.h>
44
45#include <arch/memory.h>
46#include <arch/types.h>
47#include <arch/cache.h>
48#include <dc/sq.h>
49#include <kos/img.h>
50#include <kos/regfield.h>
51
52/* Note: This file also #includes headers from dc/pvr/. They are mostly
53 at the bottom of the file to be able to use types defined throughout. */
54
55#include "pvr/pvr_mem.h"
56
57/** \defgroup pvr PowerVR API
58 \brief Low-level PowerVR GPU Driver.
59 \ingroup video
60*/
61
62/* Data types ********************************************************/
63
64/** \defgroup pvr_lists Polygon Lists
65 \brief Types pertaining to PVR list types: opaque, pt, tr, etc
66 \ingroup pvr
67*/
68
69/** \brief PVR list specification.
70 \ingroup pvr_lists
71
72 Each primitive in the PVR is submitted to one of the hardware primitive
73 lists. This type is an identifier for a list.
74
75 \see pvr_lists
76*/
77typedef uint32_t pvr_list_t;
78
79/** \defgroup pvr_geometry Geometry
80 \brief PVR API for managing scene geometry
81 \ingroup pvr
82*/
83
84/** \defgroup pvr_primitives Primitives
85 \brief Polygon and sprite management
86 \ingroup pvr_geometry
87*/
88
89/** \defgroup pvr_ctx Contexts
90 \brief User-friendly intermittent primitive representation
91 \ingroup pvr_primitives
92*/
93
94/** \brief PVR polygon context.
95 \ingroup pvr_ctx
96
97 You should use this more human readable format for specifying your polygon
98 contexts, and then compile them into polygon headers when you are ready to
99 start using them.
100
101 This has embedded structures in it for two reasons; the first reason is to
102 make it easier for me to add new stuff later without breaking existing code.
103 The second reason is to make it more readable and usable.
104
105 Unfortunately, it seems that Doxygen chokes up a little bit on this
106 structure, and others like it. The documentation should still be mostly
107 understandable though...
108
109 \headerfile dc/pvr.h
110*/
111typedef struct {
112 int list_type; /**< \brief Primitive list
113 \see pvr_lists */
114 struct {
115 int alpha; /**< \brief Enable or disable alpha outside modifier
116 \see pvr_alpha_switch */
117 int shading; /**< \brief Shading type
118 \see pvr_shading_types */
119 int fog_type; /**< \brief Fog type outside modifier
120 \see pvr_fog_types */
121 int culling; /**< \brief Culling mode
122 \see pvr_cull_modes */
123 int color_clamp; /**< \brief Color clamp enable/disable outside modifier
124 \see pvr_colclamp_switch */
125 int clip_mode; /**< \brief Clipping mode
126 \see pvr_clip_modes */
127 int modifier_mode; /**< \brief Modifier mode */
128 int specular; /**< \brief Offset color enable/disable outside modifier
129 \see pvr_offset_switch */
130 int alpha2; /**< \brief Enable/disable alpha inside modifier
131 \see pvr_alpha_switch */
132 int fog_type2; /**< \brief Fog type inside modifier
133 \see pvr_fog_types */
134 int color_clamp2; /**< \brief Color clamp enable/disable inside modifier
135 \see pvr_colclamp_switch */
136 } gen; /**< \brief General parameters */
137 struct {
138 int src; /**< \brief Source blending mode outside modifier
139 \see pvr_blend_modes */
140 int dst; /**< \brief Dest blending mode outside modifier
141 \see pvr_blend_modes */
142 int src_enable; /**< \brief Source blending enable outside modifier
143 \see pvr_blend_switch */
144 int dst_enable; /**< \brief Dest blending enable outside modifier
145 \see pvr_blend_switch */
146 int src2; /**< \brief Source blending mode inside modifier
147 \see pvr_blend_modes */
148 int dst2; /**< \brief Dest blending mode inside modifier
149 \see pvr_blend_modes */
150 int src_enable2; /**< \brief Source blending mode inside modifier
151 \see pvr_blend_switch */
152 int dst_enable2; /**< \brief Dest blending mode inside modifier
153 \see pvr_blend_switch */
154 } blend; /**< \brief Blending parameters */
155 struct {
156 int color; /**< \brief Color format in vertex
157 \see pvr_color_fmts */
158 int uv; /**< \brief U/V data format in vertex
159 \see pvr_uv_fmts */
160 int modifier; /**< \brief Enable or disable modifier effect
161 \see pvr_mod_switch */
162 } fmt; /**< \brief Format control */
163 struct {
164 int comparison; /**< \brief Depth comparison mode
165 \see pvr_depth_modes */
166 int write; /**< \brief Enable or disable depth writes
167 \see pvr_depth_switch */
168 } depth; /**< \brief Depth comparison/write modes */
169 struct {
170 int enable; /**< \brief Enable/disable texturing
171 \see pvr_txr_switch */
172 int filter; /**< \brief Filtering mode
173 \see pvr_filter_modes */
174 int mipmap; /**< \brief Enable/disable mipmaps
175 \see pvr_mip_switch */
176 int mipmap_bias; /**< \brief Mipmap bias
177 \see pvr_mip_bias */
178 int uv_flip; /**< \brief Enable/disable U/V flipping
179 \see pvr_uv_flip */
180 int uv_clamp; /**< \brief Enable/disable U/V clamping
181 \see pvr_uv_clamp */
182 int alpha; /**< \brief Enable/disable texture alpha
183 \see pvr_txralpha_switch */
184 int env; /**< \brief Texture color contribution
185 \see pvr_txrenv_modes */
186 int width; /**< \brief Texture width (requires a power of 2) */
187 int height; /**< \brief Texture height (requires a power of 2) */
188 int format; /**< \brief Texture format
189 \see pvr_txr_fmts */
190 pvr_ptr_t base; /**< \brief Texture pointer */
191 } txr; /**< \brief Texturing params outside modifier */
192 struct {
193 int enable; /**< \brief Enable/disable texturing
194 \see pvr_txr_switch */
195 int filter; /**< \brief Filtering mode
196 \see pvr_filter_modes */
197 int mipmap; /**< \brief Enable/disable mipmaps
198 \see pvr_mip_switch */
199 int mipmap_bias; /**< \brief Mipmap bias
200 \see pvr_mip_bias */
201 int uv_flip; /**< \brief Enable/disable U/V flipping
202 \see pvr_uv_flip */
203 int uv_clamp; /**< \brief Enable/disable U/V clamping
204 \see pvr_uv_clamp */
205 int alpha; /**< \brief Enable/disable texture alpha
206 \see pvr_txralpha_switch */
207 int env; /**< \brief Texture color contribution
208 \see pvr_txrenv_modes */
209 int width; /**< \brief Texture width (requires a power of 2) */
210 int height; /**< \brief Texture height (requires a power of 2) */
211 int format; /**< \brief Texture format
212 \see pvr_txr_fmts */
213 pvr_ptr_t base; /**< \brief Texture pointer */
214 } txr2; /**< \brief Texturing params inside modifier */
216
217/** \brief PVR sprite context.
218 \ingroup pvr_ctx
219
220 You should use this more human readable format for specifying your sprite
221 contexts, and then compile them into sprite headers when you are ready to
222 start using them.
223
224 Unfortunately, it seems that Doxygen chokes up a little bit on this
225 structure, and others like it. The documentation should still be mostly
226 understandable though...
227
228 \headerfile dc/pvr.h
229*/
230typedef struct {
231 int list_type; /**< \brief Primitive list
232 \see pvr_lists */
233 struct {
234 int alpha; /**< \brief Enable or disable alpha
235 \see pvr_alpha_switch */
236 int fog_type; /**< \brief Fog type
237 \see pvr_fog_types */
238 int culling; /**< \brief Culling mode
239 \see pvr_cull_modes */
240 int color_clamp; /**< \brief Color clamp enable/disable
241 \see pvr_colclamp_switch */
242 int clip_mode; /**< \brief Clipping mode
243 \see pvr_clip_modes */
244 int specular; /**< \brief Offset color enable/disable
245 \see pvr_offset_switch */
246 } gen; /**< \brief General parameters */
247 struct {
248 int src; /**< \brief Source blending mode
249 \see pvr_blend_modes */
250 int dst; /**< \brief Dest blending mode
251 \see pvr_blend_modes */
252 int src_enable; /**< \brief Source blending enable
253 \see pvr_blend_switch */
254 int dst_enable; /**< \brief Dest blending enable
255 \see pvr_blend_switch */
256 } blend;
257 struct {
258 int comparison; /**< \brief Depth comparison mode
259 \see pvr_depth_modes */
260 int write; /**< \brief Enable or disable depth writes
261 \see pvr_depth_switch */
262 } depth; /**< \brief Depth comparison/write modes */
263 struct {
264 int enable; /**< \brief Enable/disable texturing
265 \see pvr_txr_switch */
266 int filter; /**< \brief Filtering mode
267 \see pvr_filter_modes */
268 int mipmap; /**< \brief Enable/disable mipmaps
269 \see pvr_mip_switch */
270 int mipmap_bias; /**< \brief Mipmap bias
271 \see pvr_mip_bias */
272 int uv_flip; /**< \brief Enable/disable U/V flipping
273 \see pvr_uv_flip */
274 int uv_clamp; /**< \brief Enable/disable U/V clamping
275 \see pvr_uv_clamp */
276 int alpha; /**< \brief Enable/disable texture alpha
277 \see pvr_txralpha_switch */
278 int env; /**< \brief Texture color contribution
279 \see pvr_txrenv_modes */
280 int width; /**< \brief Texture width (requires a power of 2) */
281 int height; /**< \brief Texture height (requires a power of 2) */
282 int format; /**< \brief Texture format
283 \see pvr_txr_fmts */
284 pvr_ptr_t base; /**< \brief Texture pointer */
285 } txr; /**< \brief Texturing params */
287
288/* Constants for the above structure; thanks to Benoit Miller for these */
289
290/** \defgroup pvr_lists_types Types
291 \brief Values of various PVR polygon list types
292 \ingroup pvr_lists
293
294 Each primitive submitted to the PVR must be placed in one of these lists,
295 depending on its characteristics.
296
297 @{
298*/
299#define PVR_LIST_OP_POLY 0 /**< \brief Opaque polygon list */
300#define PVR_LIST_OP_MOD 1 /**< \brief Opaque modifier list */
301#define PVR_LIST_TR_POLY 2 /**< \brief Translucent polygon list */
302#define PVR_LIST_TR_MOD 3 /**< \brief Translucent modifier list*/
303#define PVR_LIST_PT_POLY 4 /**< \brief Punch-thru polygon list */
304/** @} */
305
306/** \defgroup pvr_ctx_attrib Attributes
307 \brief PVR primitive context attributes
308 \ingroup pvr_ctx
309*/
310
311/** \defgroup pvr_shading_types Shading Modes
312 \brief PowerVR primitive context shading modes
313 \ingroup pvr_ctx_attrib
314
315 Each polygon can define how it wants to be shaded, be it with flat or
316 Gouraud shading using these constants in the appropriate place in its
317 pvr_poly_cxt_t.
318
319 @{
320*/
321#define PVR_SHADE_FLAT 0 /**< \brief Use flat shading */
322#define PVR_SHADE_GOURAUD 1 /**< \brief Use Gouraud shading */
323/** @} */
324
325/** \defgroup pvr_ctx_depth Depth
326 \brief Depth attributes for PVR polygon contexts
327 \ingroup pvr_ctx_attrib
328*/
329
330/** \defgroup pvr_depth_modes Comparison Modes
331 \brief PowerVR depth comparison modes
332 \ingroup pvr_ctx_depth
333
334 These set the depth function used for comparisons.
335
336 @{
337*/
338#define PVR_DEPTHCMP_NEVER 0 /**< \brief Never pass */
339#define PVR_DEPTHCMP_LESS 1 /**< \brief Less than */
340#define PVR_DEPTHCMP_EQUAL 2 /**< \brief Equal to */
341#define PVR_DEPTHCMP_LEQUAL 3 /**< \brief Less than or equal to */
342#define PVR_DEPTHCMP_GREATER 4 /**< \brief Greater than */
343#define PVR_DEPTHCMP_NOTEQUAL 5 /**< \brief Not equal to */
344#define PVR_DEPTHCMP_GEQUAL 6 /**< \brief Greater than or equal to */
345#define PVR_DEPTHCMP_ALWAYS 7 /**< \brief Always pass */
346/** @} */
347
348/** \defgroup pvr_cull_modes Culling Modes
349 \brief PowerVR primitive context culling modes
350 \ingroup pvr_ctx_attrib
351
352 These culling modes can be set by polygons to determine when they are
353 culled. They work pretty much as you'd expect them to if you've ever used
354 any 3D hardware before.
355
356 @{
357*/
358#define PVR_CULLING_NONE 0 /**< \brief Disable culling */
359#define PVR_CULLING_SMALL 1 /**< \brief Cull if small */
360#define PVR_CULLING_CCW 2 /**< \brief Cull if counterclockwise */
361#define PVR_CULLING_CW 3 /**< \brief Cull if clockwise */
362/** @} */
363
364/** \defgroup pvr_depth_switch Write Toggle
365 \brief Enable or Disable Depth Writes.
366 \ingroup pvr_ctx_depth
367 @{
368*/
369#define PVR_DEPTHWRITE_ENABLE 0 /**< \brief Update the Z value */
370#define PVR_DEPTHWRITE_DISABLE 1 /**< \brief Do not update the Z value */
371/** @} */
372
373/** \defgroup pvr_ctx_texture Texture
374 \brief Texture attributes for PVR polygon contexts
375 \ingroup pvr_ctx_attrib
376*/
377
378/** \defgroup pvr_txr_switch Toggle
379 \brief Enable or Disable Texturing on Polygons.
380 \ingroup pvr_ctx_texture
381
382 @{
383*/
384#define PVR_TEXTURE_DISABLE 0 /**< \brief Disable texturing */
385#define PVR_TEXTURE_ENABLE 1 /**< \brief Enable texturing */
386/** @} */
387
388/** \defgroup pvr_blend Blending
389 \brief Blending attributes for PVR primitive contexts
390 \ingroup pvr_ctx_attrib
391*/
392
393/** \defgroup pvr_blend_modes Blending Modes
394 \brief Blending modes for PowerVR primitive contexts
395 \ingroup pvr_blend
396
397 These are all the blending modes that can be done with regard to alpha
398 blending on the PVR.
399
400 @{
401*/
402#define PVR_BLEND_ZERO 0 /**< \brief None of this color */
403#define PVR_BLEND_ONE 1 /**< \brief All of this color */
404#define PVR_BLEND_DESTCOLOR 2 /**< \brief Destination color */
405#define PVR_BLEND_INVDESTCOLOR 3 /**< \brief Inverse of destination color */
406#define PVR_BLEND_SRCALPHA 4 /**< \brief Blend with source alpha */
407#define PVR_BLEND_INVSRCALPHA 5 /**< \brief Blend with inverse source alpha */
408#define PVR_BLEND_DESTALPHA 6 /**< \brief Blend with destination alpha */
409#define PVR_BLEND_INVDESTALPHA 7 /**< \brief Blend with inverse destination alpha */
410/** @} */
411
412/** \defgroup pvr_blend_switch Blending Toggle
413 \brief Enable or Disable Blending.
414 \ingroup pvr_blend
415
416 @{
417*/
418#define PVR_BLEND_DISABLE 0 /**< \brief Disable blending */
419#define PVR_BLEND_ENABLE 1 /**< \brief Enable blending */
420/** @} */
421
422/** \defgroup pvr_fog_types Fog Modes
423 \brief PowerVR primitive context fog modes
424 \ingroup pvr_ctx_attrib
425
426 Each polygon can decide what fog type is used with regard to it using these
427 constants in its pvr_poly_cxt_t.
428
429 @{
430*/
431#define PVR_FOG_TABLE 0 /**< \brief Table fog */
432#define PVR_FOG_VERTEX 1 /**< \brief Vertex fog */
433#define PVR_FOG_DISABLE 2 /**< \brief Disable fog */
434#define PVR_FOG_TABLE2 3 /**< \brief Table fog mode 2 */
435/** @} */
436
437/** \defgroup pvr_clip_modes Clipping Modes
438 \brief PowerVR primitive context clipping modes
439 \ingroup pvr_ctx_attrib
440
441 These control how primitives are clipped against the user clipping area.
442
443 @{
444*/
445#define PVR_USERCLIP_DISABLE 0 /**< \brief Disable clipping */
446#define PVR_USERCLIP_INSIDE 2 /**< \brief Enable clipping inside area */
447#define PVR_USERCLIP_OUTSIDE 3 /**< \brief Enable clipping outside area */
448/** @} */
449
450/** \defgroup pvr_ctx_color Color
451 \brief Color attributes for PowerVR primitive contexts
452 \ingroup pvr_ctx_attrib
453*/
454
455/** \defgroup pvr_colclamp_switch Clamping Toggle
456 \brief Enable or Disable Color Clamping
457 \ingroup pvr_ctx_color
458
459 Enabling color clamping will clamp colors between the minimum and maximum
460 values before any sort of fog processing.
461
462 @{
463*/
464#define PVR_CLRCLAMP_DISABLE 0 /**< \brief Disable color clamping */
465#define PVR_CLRCLAMP_ENABLE 1 /**< \brief Enable color clamping */
466/** @} */
467
468/** \defgroup pvr_offset_switch Offset Toggle
469 \brief Enable or Disable Offset Color
470 \ingroup pvr_ctx_color
471
472 Enabling offset color calculation allows for "specular" like effects on a
473 per-vertex basis, by providing an additive color in the calculation of the
474 final pixel colors. In vertex types with a "oargb" parameter, that's what it
475 is for.
476
477 \note
478 This must be enabled for bumpmap polygons in order to allow you to
479 specify the parameters in the oargb field of the vertices.
480
481 @{
482*/
483#define PVR_SPECULAR_DISABLE 0 /**< \brief Disable offset colors */
484#define PVR_SPECULAR_ENABLE 1 /**< \brief Enable offset colors */
485/** @} */
486
487/** \defgroup pvr_alpha_switch Alpha Toggle
488 \brief Enable or Disable Alpha Blending
489 \ingroup pvr_blend
490
491 This causes the alpha value in the vertex color to be paid attention to. It
492 really only makes sense to enable this for translucent or punch-thru polys.
493
494 @{
495*/
496#define PVR_ALPHA_DISABLE 0 /**< \brief Disable alpha blending */
497#define PVR_ALPHA_ENABLE 1 /**< \brief Enable alpha blending */
498/** @} */
499
500/** \defgroup pvr_txralpha_switch Alpha Toggle
501 \brief Enable or Disable Texture Alpha Blending
502 \ingroup pvr_ctx_texture
503
504 This causes the alpha value in the texel color to be paid attention to. It
505 really only makes sense to enable this for translucent or punch-thru polys.
506
507 @{
508*/
509#define PVR_TXRALPHA_ENABLE 0 /**< \brief Enable alpha blending */
510#define PVR_TXRALPHA_DISABLE 1 /**< \brief Disable alpha blending */
511/** @} */
512
513/** \defgroup pvr_uv_flip U/V Flip Mode
514 \brief Enable or disable U/V flipping on the PVR
515 \ingroup pvr_ctx_texture
516
517 These flags determine what happens when U/V coordinate values exceed 1.0.
518 In any of the flipped cases, the specified coordinate value will flip around
519 after 1.0, essentially mirroring the image. So, if you displayed an image
520 with a U coordinate of 0.0 on the left hand side and 2.0 on the right hand
521 side with U flipping turned on, you'd have an image that was displayed twice
522 as if mirrored across the middle. This mirroring behavior happens at every
523 unit boundary (so at 2.0 it returns to normal, at 3.0 it flips, etc).
524
525 The default case is to disable mirroring. In addition, clamping of the U/V
526 coordinates by PVR_UVCLAMP_U, PVR_UVCLAMP_V, or PVR_UVCLAMP_UV will disable
527 the mirroring behavior.
528 @{
529*/
530#define PVR_UVFLIP_NONE 0 /**< \brief No flipped coordinates */
531#define PVR_UVFLIP_V 1 /**< \brief Flip V only */
532#define PVR_UVFLIP_U 2 /**< \brief Flip U only */
533#define PVR_UVFLIP_UV 3 /**< \brief Flip U and V */
534/** @} */
535
536/** \defgroup pvr_uv_clamp U/V Clamp Mode
537 \brief Enable or disable clamping of U/V on the PVR
538 \ingroup pvr_ctx_texture
539
540 These flags determine whether clamping will be applied to U/V coordinate
541 values that exceed 1.0. If enabled, these modes will explicitly override the
542 flip/mirroring modes (PVR_UVFLIP_U, PVR_UVFLIP_V, and PVR_UVFLIP_UV), and
543 will instead ensure that the coordinate(s) in question never exceed 1.0.
544 @{
545*/
546#define PVR_UVCLAMP_NONE 0 /**< \brief Disable clamping */
547#define PVR_UVCLAMP_V 1 /**< \brief Clamp V only */
548#define PVR_UVCLAMP_U 2 /**< \brief Clamp U only */
549#define PVR_UVCLAMP_UV 3 /**< \brief Clamp U and V */
550/** @} */
551
552/** \defgroup pvr_filter_modes Sampling Modes
553 \brief PowerVR texture sampling modes
554 \ingroup pvr_ctx_texture
555
556 @{
557*/
558#define PVR_FILTER_NONE 0 /**< \brief No filtering (point sample) */
559#define PVR_FILTER_NEAREST 0 /**< \brief No filtering (point sample) */
560#define PVR_FILTER_BILINEAR 2 /**< \brief Bilinear interpolation */
561#define PVR_FILTER_TRILINEAR1 4 /**< \brief Trilinear interpolation pass 1 */
562#define PVR_FILTER_TRILINEAR2 6 /**< \brief Trilinear interpolation pass 2 */
563/** @} */
564
565/** \defgroup pvr_mip_bias Mipmap Bias Modes
566 \brief Mipmap bias modes for PowerVR primitive contexts
567 \ingroup pvr_ctx_texture
568
569 @{
570*/
571#define PVR_MIPBIAS_NORMAL PVR_MIPBIAS_1_00 /* txr_mipmap_bias */
572#define PVR_MIPBIAS_0_25 1
573#define PVR_MIPBIAS_0_50 2
574#define PVR_MIPBIAS_0_75 3
575#define PVR_MIPBIAS_1_00 4
576#define PVR_MIPBIAS_1_25 5
577#define PVR_MIPBIAS_1_50 6
578#define PVR_MIPBIAS_1_75 7
579#define PVR_MIPBIAS_2_00 8
580#define PVR_MIPBIAS_2_25 9
581#define PVR_MIPBIAS_2_50 10
582#define PVR_MIPBIAS_2_75 11
583#define PVR_MIPBIAS_3_00 12
584#define PVR_MIPBIAS_3_25 13
585#define PVR_MIPBIAS_3_50 14
586#define PVR_MIPBIAS_3_75 15
587/** @} */
588
589/** \defgroup pvr_txrenv_modes Color Calculation Modes
590 \brief PowerVR texture color calculation modes
591 \ingroup pvr_ctx_texture
592
593 @{
594*/
595#define PVR_TXRENV_REPLACE 0 /**< \brief C = Ct, A = At */
596#define PVR_TXRENV_MODULATE 1 /**< \brief C = Cs * Ct, A = At */
597#define PVR_TXRENV_DECAL 2 /**< \brief C = (Cs * At) + (Cs * (1-At)), A = As */
598#define PVR_TXRENV_MODULATEALPHA 3 /**< \brief C = Cs * Ct, A = As * At */
599/** @} */
600
601/** \defgroup pvr_mip_switch Mipmap Toggle
602 \brief Enable or Disable Mipmap Processing
603 \ingroup pvr_ctx_texture
604
605 @{
606*/
607#define PVR_MIPMAP_DISABLE 0 /**< \brief Disable mipmap processing */
608#define PVR_MIPMAP_ENABLE 1 /**< \brief Enable mipmap processing */
609/** @} */
610
611/** \defgroup pvr_txr_fmts Formats
612 \brief PowerVR texture formats
613 \ingroup pvr_txr_mgmt
614
615 These are the texture formats that the PVR supports. Note that some of
616 these, you can OR together with other values.
617
618 @{
619*/
620#define PVR_TXRFMT_NONE 0 /**< \brief No texture */
621#define PVR_TXRFMT_VQ_DISABLE (0 << 30) /**< \brief Not VQ encoded */
622#define PVR_TXRFMT_VQ_ENABLE (1 << 30) /**< \brief VQ encoded */
623#define PVR_TXRFMT_ARGB1555 (0 << 27) /**< \brief 16-bit ARGB1555 */
624#define PVR_TXRFMT_RGB565 (1 << 27) /**< \brief 16-bit RGB565 */
625#define PVR_TXRFMT_ARGB4444 (2 << 27) /**< \brief 16-bit ARGB4444 */
626#define PVR_TXRFMT_YUV422 (3 << 27) /**< \brief YUV422 format */
627#define PVR_TXRFMT_BUMP (4 << 27) /**< \brief Bumpmap format */
628#define PVR_TXRFMT_PAL4BPP (5 << 27) /**< \brief 4BPP paletted format */
629#define PVR_TXRFMT_PAL8BPP (6 << 27) /**< \brief 8BPP paletted format */
630#define PVR_TXRFMT_TWIDDLED (0 << 26) /**< \brief Texture is twiddled */
631#define PVR_TXRFMT_NONTWIDDLED (1 << 26) /**< \brief Texture is not twiddled */
632#define PVR_TXRFMT_POW2_STRIDE (0 << 25) /**< \brief Stride is a power-of-two */
633#define PVR_TXRFMT_X32_STRIDE (1 << 25) /**< \brief Stride is multiple of 32 */
634
635/* Backward compatibility */
636#define PVR_TXRFMT_NOSTRIDE PVR_TXRFMT_POW2_STRIDE
637#define PVR_TXRFMT_STRIDE PVR_TXRFMT_X32_STRIDE
638
639/* OR one of these into your texture format if you need it. Note that
640 these coincide with the twiddled/stride bits, so you can't have a
641 non-twiddled/strided texture that's paletted! */
642
643/** \brief 8BPP palette selector
644
645 \param x The palette index */
646#define PVR_TXRFMT_8BPP_PAL(x) ((x) << 25)
647
648/** \brief 4BPP palette selector
649
650 \param x The palette index */
651#define PVR_TXRFMT_4BPP_PAL(x) ((x) << 21)
652/** @} */
653
654/** \defgroup pvr_color_fmts Vertex Formats
655 \brief Color formats for PowerVR vertices
656 \ingroup pvr_ctx_color
657
658 These control how colors are represented in polygon data.
659
660 @{
661*/
662#define PVR_CLRFMT_ARGBPACKED 0 /**< \brief 32-bit integer ARGB */
663#define PVR_CLRFMT_4FLOATS 1 /**< \brief 4 floating point values */
664#define PVR_CLRFMT_INTENSITY 2 /**< \brief Intensity color */
665#define PVR_CLRFMT_INTENSITY_PREV 3 /**< \brief Use last intensity */
666/** @} */
667
668/** \defgroup pvr_uv_fmts U/V Data Format
669 \brief U/V data format for PVR textures
670 \ingroup pvr_ctx_texture
671 @{
672*/
673#define PVR_UVFMT_32BIT 0 /**< \brief 32-bit floating point U/V */
674#define PVR_UVFMT_16BIT 1 /**< \brief 16-bit floating point U/V */
675/** @} */
676
677/** \defgroup pvr_ctx_modvol Modifier Volumes
678 \brief PowerVR modifier volume polygon context attributes
679 \ingroup pvr_ctx_attrib
680*/
681
682/** \defgroup pvr_mod_switch Toggle
683 \brief Enable or Disable Modifier Effects
684 \ingroup pvr_ctx_modvol
685 @{
686*/
687#define PVR_MODIFIER_DISABLE 0 /**< \brief Disable modifier effects */
688#define PVR_MODIFIER_ENABLE 1 /**< \brief Enable modifier effects */
689/** @} */
690
691/** \defgroup pvr_mod_types Types
692 \brief Modifier volume types for PowerVR primitive contexts
693 \ingroup pvr_ctx_modvol
694 @{
695*/
696#define PVR_MODIFIER_CHEAP_SHADOW 0
697#define PVR_MODIFIER_NORMAL 1
698/** @} */
699
700/** \defgroup pvr_mod_modes Modes
701 \brief Modifier volume modes for PowerVR primitive contexts
702 \ingroup pvr_ctx_modvol
703
704 All triangles in a single modifier volume should be of the other poly type,
705 except for the last one. That should be either of the other two types,
706 depending on whether you want an inclusion or exclusion volume.
707
708 @{
709*/
710#define PVR_MODIFIER_OTHER_POLY 0 /**< \brief Not the last polygon in the volume */
711#define PVR_MODIFIER_INCLUDE_LAST_POLY 1 /**< \brief Last polygon, inclusion volume */
712#define PVR_MODIFIER_EXCLUDE_LAST_POLY 2 /**< \brief Last polygon, exclusion volume */
713/** @} */
714
715/** \defgroup pvr_primitives_headers Headers
716 \brief Compiled headers for polygons and sprites
717 \ingroup pvr_primitives
718
719 @{
720*/
721
722/** \brief PVR polygon header.
723
724 This is the hardware equivalent of a rendering context; you'll create one of
725 these from your pvr_poly_cxt_t and use it for submission to the hardware.
726
727 \headerfile dc/pvr.h
728*/
729typedef struct pvr_poly_hdr {
730 alignas(32)
731 uint32_t cmd; /**< \brief TA command */
732 uint32_t mode1; /**< \brief Parameter word 1 */
733 uint32_t mode2; /**< \brief Parameter word 2 */
734 uint32_t mode3; /**< \brief Parameter word 3 */
735 uint32_t d1; /**< \brief Dummy value */
736 uint32_t d2; /**< \brief Dummy value */
737 uint32_t d3; /**< \brief Dummy value */
738 uint32_t d4; /**< \brief Dummy value */
740
741/** \brief PVR polygon header with intensity color.
742
743 This is the equivalent of pvr_poly_hdr_t, but for use with intensity color.
744
745 \headerfile dc/pvr.h
746*/
747typedef struct pvr_poly_ic_hdr {
748 alignas(32)
749 uint32_t cmd; /**< \brief TA command */
750 uint32_t mode1; /**< \brief Parameter word 1 */
751 uint32_t mode2; /**< \brief Parameter word 2 */
752 uint32_t mode3; /**< \brief Parameter word 3 */
753 float a; /**< \brief Face color alpha component */
754 float r; /**< \brief Face color red component */
755 float g; /**< \brief Face color green component */
756 float b; /**< \brief Face color blue component */
758
759/** \brief PVR polygon header to be used with modifier volumes.
760
761 This is the equivalent of a pvr_poly_hdr_t for use when a polygon is to be
762 used with modifier volumes.
763
764 \headerfile dc/pvr.h
765*/
766typedef struct pvr_poly_mod_hdr {
767 alignas(32)
768 uint32_t cmd; /**< \brief TA command */
769 uint32_t mode1; /**< \brief Parameter word 1 */
770 uint32_t mode2_0; /**< \brief Parameter word 2 (outside volume) */
771 uint32_t mode3_0; /**< \brief Parameter word 3 (outside volume) */
772 uint32_t mode2_1; /**< \brief Parameter word 2 (inside volume) */
773 uint32_t mode3_1; /**< \brief Parameter word 3 (inside volume) */
774 uint32_t d1; /**< \brief Dummy value */
775 uint32_t d2; /**< \brief Dummy value */
777
778/** \brief PVR polygon header specifically for sprites.
779
780 This is the equivalent of a pvr_poly_hdr_t for use when a quad/sprite is to
781 be rendered. Note that the color data is here, not in the vertices.
782
783 \headerfile dc/pvr.h
784*/
785typedef struct pvr_sprite_hdr {
786 alignas(32)
787 uint32_t cmd; /**< \brief TA command */
788 uint32_t mode1; /**< \brief Parameter word 1 */
789 uint32_t mode2; /**< \brief Parameter word 2 */
790 uint32_t mode3; /**< \brief Parameter word 3 */
791 uint32_t argb; /**< \brief Sprite face color */
792 uint32_t oargb; /**< \brief Sprite offset color */
793 uint32_t d1; /**< \brief Dummy value */
794 uint32_t d2; /**< \brief Dummy value */
796
797/** \brief Modifier volume header.
798
799 This is the header that should be submitted when dealing with setting a
800 modifier volume.
801
802 \headerfile dc/pvr.h
803*/
804typedef struct pvr_mod_hdr {
805 alignas(32)
806 uint32_t cmd; /**< \brief TA command */
807 uint32_t mode1; /**< \brief Parameter word 1 */
808 uint32_t d1; /**< \brief Dummy value */
809 uint32_t d2; /**< \brief Dummy value */
810 uint32_t d3; /**< \brief Dummy value */
811 uint32_t d4; /**< \brief Dummy value */
812 uint32_t d5; /**< \brief Dummy value */
813 uint32_t d6; /**< \brief Dummy value */
815
816/** @} */
817
818/** \defgroup pvr_vertex_types Vertices
819 \brief PowerVR vertex types
820 \ingroup pvr_geometry
821
822 @{
823*/
824
825/** \brief Generic PVR vertex type.
826
827 The PVR chip itself supports many more vertex types, but this is the main
828 one that can be used with both textured and non-textured polygons, and is
829 fairly fast.
830
831 \headerfile dc/pvr.h
832*/
833typedef struct pvr_vertex {
834 alignas(32)
835 uint32_t flags; /**< \brief TA command (vertex flags) */
836 float x; /**< \brief X coordinate */
837 float y; /**< \brief Y coordinate */
838 float z; /**< \brief Z coordinate */
839 float u; /**< \brief Texture U coordinate */
840 float v; /**< \brief Texture V coordinate */
841 uint32_t argb; /**< \brief Vertex color */
842 uint32_t oargb; /**< \brief Vertex offset color */
844
845/** \brief PVR vertex type: Non-textured, packed color, affected by modifier
846 volume.
847
848 This vertex type has two copies of colors. The second color is used when
849 enclosed within a modifier volume.
850
851 \headerfile dc/pvr.h
852*/
853typedef struct pvr_vertex_pcm {
854 alignas(32)
855 uint32_t flags; /**< \brief TA command (vertex flags) */
856 float x; /**< \brief X coordinate */
857 float y; /**< \brief Y coordinate */
858 float z; /**< \brief Z coordinate */
859 uint32_t argb0; /**< \brief Vertex color (outside volume) */
860 uint32_t argb1; /**< \brief Vertex color (inside volume) */
861 uint32_t d1; /**< \brief Dummy value */
862 uint32_t d2; /**< \brief Dummy value */
864
865/** \brief PVR vertex type: Textured, packed color, affected by modifier volume.
866
867 Note that this vertex type has two copies of colors, offset colors, and
868 texture coords. The second set of texture coords, colors, and offset colors
869 are used when enclosed within a modifier volume.
870
871 \headerfile dc/pvr.h
872*/
873typedef struct pvr_vertex_tpcm {
874 alignas(32)
875 uint32_t flags; /**< \brief TA command (vertex flags) */
876 float x; /**< \brief X coordinate */
877 float y; /**< \brief Y coordinate */
878 float z; /**< \brief Z coordinate */
879 float u0; /**< \brief Texture U coordinate (outside) */
880 float v0; /**< \brief Texture V coordinate (outside) */
881 uint32_t argb0; /**< \brief Vertex color (outside) */
882 uint32_t oargb0; /**< \brief Vertex offset color (outside) */
883 float u1; /**< \brief Texture U coordinate (inside) */
884 float v1; /**< \brief Texture V coordinate (inside) */
885 uint32_t argb1; /**< \brief Vertex color (inside) */
886 uint32_t oargb1; /**< \brief Vertex offset color (inside) */
887 uint32_t d1; /**< \brief Dummy value */
888 uint32_t d2; /**< \brief Dummy value */
889 uint32_t d3; /**< \brief Dummy value */
890 uint32_t d4; /**< \brief Dummy value */
892
893/** \brief PVR vertex type: Textured sprite.
894
895 This vertex type is to be used with the sprite polygon header and the sprite
896 related commands to draw textured sprites. Note that there is no fourth Z
897 coordinate. I suppose it just gets interpolated?
898
899 The U/V coordinates in here are in the 16-bit per coordinate form. Also,
900 like the fourth Z value, there is no fourth U or V, so it must get
901 interpolated from the others.
902
903 \headerfile dc/pvr.h
904*/
905typedef struct pvr_sprite_txr {
906 alignas(32)
907 uint32_t flags; /**< \brief TA command (vertex flags) */
908 float ax; /**< \brief First X coordinate */
909 float ay; /**< \brief First Y coordinate */
910 float az; /**< \brief First Z coordinate */
911 float bx; /**< \brief Second X coordinate */
912 float by; /**< \brief Second Y coordinate */
913 float bz; /**< \brief Second Z coordinate */
914 float cx; /**< \brief Third X coordinate */
915 float cy; /**< \brief Third Y coordinate */
916 float cz; /**< \brief Third Z coordinate */
917 float dx; /**< \brief Fourth X coordinate */
918 float dy; /**< \brief Fourth Y coordinate */
919 uint32_t dummy; /**< \brief Dummy value */
920 uint32_t auv; /**< \brief First U/V texture coordinates */
921 uint32_t buv; /**< \brief Second U/V texture coordinates */
922 uint32_t cuv; /**< \brief Third U/V texture coordinates */
924
925/** \brief PVR vertex type: Untextured sprite.
926
927 This vertex type is to be used with the sprite polygon header and the sprite
928 related commands to draw untextured sprites (aka, quads).
929*/
930typedef struct pvr_sprite_col {
931 alignas(32)
932 uint32_t flags; /**< \brief TA command (vertex flags) */
933 float ax; /**< \brief First X coordinate */
934 float ay; /**< \brief First Y coordinate */
935 float az; /**< \brief First Z coordinate */
936 float bx; /**< \brief Second X coordinate */
937 float by; /**< \brief Second Y coordinate */
938 float bz; /**< \brief Second Z coordinate */
939 float cx; /**< \brief Third X coordinate */
940 float cy; /**< \brief Third Y coordinate */
941 float cz; /**< \brief Third Z coordinate */
942 float dx; /**< \brief Fourth X coordinate */
943 float dy; /**< \brief Fourth Y coordinate */
944 uint32_t d1; /**< \brief Dummy value */
945 uint32_t d2; /**< \brief Dummy value */
946 uint32_t d3; /**< \brief Dummy value */
947 uint32_t d4; /**< \brief Dummy value */
949
950/** \brief PVR vertex type: Modifier volume.
951
952 This vertex type is to be used with the modifier volume header to specify
953 triangular modifier areas.
954*/
955typedef struct pvr_modifier_vol {
956 alignas(32)
957 uint32_t flags; /**< \brief TA command (vertex flags) */
958 float ax; /**< \brief First X coordinate */
959 float ay; /**< \brief First Y coordinate */
960 float az; /**< \brief First Z coordinate */
961 float bx; /**< \brief Second X coordinate */
962 float by; /**< \brief Second Y coordinate */
963 float bz; /**< \brief Second Z coordinate */
964 float cx; /**< \brief Third X coordinate */
965 float cy; /**< \brief Third Y coordinate */
966 float cz; /**< \brief Third Z coordinate */
967 uint32_t d1; /**< \brief Dummy value */
968 uint32_t d2; /**< \brief Dummy value */
969 uint32_t d3; /**< \brief Dummy value */
970 uint32_t d4; /**< \brief Dummy value */
971 uint32_t d5; /**< \brief Dummy value */
972 uint32_t d6; /**< \brief Dummy value */
974
975/** @} */
976
977/** \defgroup pvr_commands TA Command Values
978 \brief Command values for submitting data to the TA
979 \ingroup pvr_primitives_headers
980
981 These are are appropriate values for TA commands. Use whatever goes with the
982 primitive type you're using.
983
984 @{
985*/
986#define PVR_CMD_POLYHDR 0x80840000 /**< \brief PVR polygon header.
987Striplength set to 2 */
988#define PVR_CMD_VERTEX 0xe0000000 /**< \brief PVR vertex data */
989#define PVR_CMD_VERTEX_EOL 0xf0000000 /**< \brief PVR vertex, end of strip */
990#define PVR_CMD_USERCLIP 0x20000000 /**< \brief PVR user clipping area */
991#define PVR_CMD_MODIFIER 0x80000000 /**< \brief PVR modifier volume */
992#define PVR_CMD_SPRITE 0xA0000000 /**< \brief PVR sprite header */
993/** @} */
994
995/** \cond
996 Deprecated macros, replaced by the pvr_bitmasks macros below.
997 */
998#define PVR_TA_CMD_TYPE_SHIFT 24
999#define PVR_TA_CMD_TYPE_MASK (7 << PVR_TA_CMD_TYPE_SHIFT)
1000
1001#define PVR_TA_CMD_USERCLIP_SHIFT 16
1002#define PVR_TA_CMD_USERCLIP_MASK (3 << PVR_TA_CMD_USERCLIP_SHIFT)
1003
1004#define PVR_TA_CMD_CLRFMT_SHIFT 4
1005#define PVR_TA_CMD_CLRFMT_MASK (7 << PVR_TA_CMD_CLRFMT_SHIFT)
1006
1007#define PVR_TA_CMD_SPECULAR_SHIFT 2
1008#define PVR_TA_CMD_SPECULAR_MASK (1 << PVR_TA_CMD_SPECULAR_SHIFT)
1009
1010#define PVR_TA_CMD_SHADE_SHIFT 1
1011#define PVR_TA_CMD_SHADE_MASK (1 << PVR_TA_CMD_SHADE_SHIFT)
1012
1013#define PVR_TA_CMD_UVFMT_SHIFT 0
1014#define PVR_TA_CMD_UVFMT_MASK (1 << PVR_TA_CMD_UVFMT_SHIFT)
1015
1016#define PVR_TA_CMD_MODIFIER_SHIFT 7
1017#define PVR_TA_CMD_MODIFIER_MASK (1 << PVR_TA_CMD_MODIFIER_SHIFT)
1018
1019#define PVR_TA_CMD_MODIFIERMODE_SHIFT 6
1020#define PVR_TA_CMD_MODIFIERMODE_MASK (1 << PVR_TA_CMD_MODIFIERMODE_SHIFT)
1021
1022#define PVR_TA_PM1_DEPTHCMP_SHIFT 29
1023#define PVR_TA_PM1_DEPTHCMP_MASK (7 << PVR_TA_PM1_DEPTHCMP_SHIFT)
1024
1025#define PVR_TA_PM1_CULLING_SHIFT 27
1026#define PVR_TA_PM1_CULLING_MASK (3 << PVR_TA_PM1_CULLING_SHIFT)
1027
1028#define PVR_TA_PM1_DEPTHWRITE_SHIFT 26
1029#define PVR_TA_PM1_DEPTHWRITE_MASK (1 << PVR_TA_PM1_DEPTHWRITE_SHIFT)
1030
1031#define PVR_TA_PM1_TXRENABLE_SHIFT 25
1032#define PVR_TA_PM1_TXRENABLE_MASK (1 << PVR_TA_PM1_TXRENABLE_SHIFT)
1033
1034#define PVR_TA_PM1_MODIFIERINST_SHIFT 29
1035#define PVR_TA_PM1_MODIFIERINST_MASK (3 << PVR_TA_PM1_MODIFIERINST_SHIFT)
1036
1037#define PVR_TA_PM2_SRCBLEND_SHIFT 29
1038#define PVR_TA_PM2_SRCBLEND_MASK (7 << PVR_TA_PM2_SRCBLEND_SHIFT)
1039
1040#define PVR_TA_PM2_DSTBLEND_SHIFT 26
1041#define PVR_TA_PM2_DSTBLEND_MASK (7 << PVR_TA_PM2_DSTBLEND_SHIFT)
1042
1043#define PVR_TA_PM2_SRCENABLE_SHIFT 25
1044#define PVR_TA_PM2_SRCENABLE_MASK (1 << PVR_TA_PM2_SRCENABLE_SHIFT)
1045
1046#define PVR_TA_PM2_DSTENABLE_SHIFT 24
1047#define PVR_TA_PM2_DSTENABLE_MASK (1 << PVR_TA_PM2_DSTENABLE_SHIFT)
1048
1049#define PVR_TA_PM2_FOG_SHIFT 22
1050#define PVR_TA_PM2_FOG_MASK (3 << PVR_TA_PM2_FOG_SHIFT)
1051
1052#define PVR_TA_PM2_CLAMP_SHIFT 21
1053#define PVR_TA_PM2_CLAMP_MASK (1 << PVR_TA_PM2_CLAMP_SHIFT)
1054
1055#define PVR_TA_PM2_ALPHA_SHIFT 20
1056#define PVR_TA_PM2_ALPHA_MASK (1 << PVR_TA_PM2_ALPHA_SHIFT)
1057
1058#define PVR_TA_PM2_TXRALPHA_SHIFT 19
1059#define PVR_TA_PM2_TXRALPHA_MASK (1 << PVR_TA_PM2_TXRALPHA_SHIFT)
1060
1061#define PVR_TA_PM2_UVFLIP_SHIFT 17
1062#define PVR_TA_PM2_UVFLIP_MASK (3 << PVR_TA_PM2_UVFLIP_SHIFT)
1063
1064#define PVR_TA_PM2_UVCLAMP_SHIFT 15
1065#define PVR_TA_PM2_UVCLAMP_MASK (3 << PVR_TA_PM2_UVCLAMP_SHIFT)
1066
1067#define PVR_TA_PM2_FILTER_SHIFT 12
1068#define PVR_TA_PM2_FILTER_MASK (7 << PVR_TA_PM2_FILTER_SHIFT)
1069
1070#define PVR_TA_PM2_MIPBIAS_SHIFT 8
1071#define PVR_TA_PM2_MIPBIAS_MASK (15 << PVR_TA_PM2_MIPBIAS_SHIFT)
1072
1073#define PVR_TA_PM2_TXRENV_SHIFT 6
1074#define PVR_TA_PM2_TXRENV_MASK (3 << PVR_TA_PM2_TXRENV_SHIFT)
1075
1076#define PVR_TA_PM2_USIZE_SHIFT 3
1077#define PVR_TA_PM2_USIZE_MASK (7 << PVR_TA_PM2_USIZE_SHIFT)
1078
1079#define PVR_TA_PM2_VSIZE_SHIFT 0
1080#define PVR_TA_PM2_VSIZE_MASK (7 << PVR_TA_PM2_VSIZE_SHIFT)
1081
1082#define PVR_TA_PM3_MIPMAP_SHIFT 31
1083#define PVR_TA_PM3_MIPMAP_MASK (1 << PVR_TA_PM3_MIPMAP_SHIFT)
1084
1085#define PVR_TA_PM3_TXRFMT_SHIFT 0
1086#define PVR_TA_PM3_TXRFMT_MASK 0xffffffff
1087/** \endcond */
1088
1089/** \defgroup pvr_bitmasks Constants and Masks
1090 \brief Polygon header constants and masks
1091 \ingroup pvr_primitives_headers
1092
1093 Note that thanks to the arrangement of constants, this is mainly a matter of
1094 bit shifting to compile headers...
1095
1096 @{
1097*/
1098#define PVR_TA_CMD_TYPE GENMASK(26, 24)
1099#define PVR_TA_CMD_USERCLIP GENMASK(17, 16)
1100#define PVR_TA_CMD_MODIFIER BIT(7)
1101#define PVR_TA_CMD_MODIFIERMODE BIT(6)
1102#define PVR_TA_CMD_CLRFMT GENMASK(5, 4)
1103#define PVR_TA_CMD_TXRENABLE BIT(3)
1104#define PVR_TA_CMD_SPECULAR BIT(2)
1105#define PVR_TA_CMD_SHADE BIT(1)
1106#define PVR_TA_CMD_UVFMT BIT(0)
1107#define PVR_TA_PM1_DEPTHCMP GENMASK(31, 29)
1108#define PVR_TA_PM1_CULLING GENMASK(28, 27)
1109#define PVR_TA_PM1_DEPTHWRITE BIT(26)
1110#define PVR_TA_PM1_TXRENABLE BIT(25)
1111#define PVR_TA_PM1_MODIFIERINST GENMASK(30, 29)
1112#define PVR_TA_PM2_SRCBLEND GENMASK(31, 29)
1113#define PVR_TA_PM2_DSTBLEND GENMASK(28, 26)
1114#define PVR_TA_PM2_SRCENABLE BIT(25)
1115#define PVR_TA_PM2_DSTENABLE BIT(24)
1116#define PVR_TA_PM2_FOG GENMASK(23, 22)
1117#define PVR_TA_PM2_CLAMP BIT(21)
1118#define PVR_TA_PM2_ALPHA BIT(20)
1119#define PVR_TA_PM2_TXRALPHA BIT(19)
1120#define PVR_TA_PM2_UVFLIP GENMASK(18, 17)
1121#define PVR_TA_PM2_UVCLAMP GENMASK(16, 15)
1122#define PVR_TA_PM2_FILTER GENMASK(14, 12)
1123#define PVR_TA_PM2_MIPBIAS GENMASK(11, 8)
1124#define PVR_TA_PM2_TXRENV GENMASK(7, 6)
1125#define PVR_TA_PM2_USIZE GENMASK(5, 3)
1126#define PVR_TA_PM2_VSIZE GENMASK(2, 0)
1127#define PVR_TA_PM3_MIPMAP BIT(31)
1128#define PVR_TA_PM3_TXRFMT GENMASK(30, 21)
1129/** @} */
1130
1131/* Initialization ****************************************************/
1132/** \defgroup pvr_init Initialization
1133 \brief Driver initialization and shutdown
1134 \ingroup pvr
1135
1136 Initialization and shutdown: stuff you should only ever have to do
1137 once in your program.
1138*/
1139
1140/** \defgroup pvr_binsizes Primitive Bin Sizes
1141 \brief Available sizes for primitive bins
1142 \ingroup pvr_init
1143 @{
1144*/
1145#define PVR_BINSIZE_0 0 /**< \brief 0-length (disables the list) */
1146#define PVR_BINSIZE_8 8 /**< \brief 8-word (32-byte) length */
1147#define PVR_BINSIZE_16 16 /**< \brief 16-word (64-byte) length */
1148#define PVR_BINSIZE_32 32 /**< \brief 32-word (128-byte) length */
1149/** @} */
1150
1151/** \brief PVR initialization structure
1152 \ingroup pvr_init
1153
1154 This structure defines how the PVR initializes various parts of the system,
1155 including the primitive bin sizes, the vertex buffer size, and whether
1156 vertex DMA will be enabled.
1157
1158 You essentially fill one of these in, and pass it to pvr_init().
1159
1160 \headerfile dc/pvr.h
1161*/
1162typedef struct {
1163 /** \brief Bin sizes.
1164
1165 The bins go in the following order: opaque polygons, opaque modifiers,
1166 translucent polygons, translucent modifiers, punch-thrus
1167 */
1168 int opb_sizes[5];
1169
1170 /** \brief Vertex buffer size (should be a nice round number) */
1172
1173 /** \brief Enable vertex DMA?
1174
1175 Set to non-zero if we want to enable vertex DMA mode. Note that if this
1176 is set, then _all_ enabled lists need to have a vertex buffer assigned,
1177 even if you never use that list for anything.
1178 */
1180
1181 /** \brief Enable horizontal scaling?
1182
1183 Set to non-zero if horizontal scaling is to be enabled. By enabling this
1184 setting and stretching your image to double the native screen width, you
1185 can get horizontal full-screen anti-aliasing. */
1187
1188 /** \brief Disable translucent polygon autosort?
1189
1190 Set to non-zero to disable translucent polygon autosorting. By enabling
1191 this setting, the PVR acts more like a traditional Z-buffered system
1192 when rendering translucent polygons, meaning you must pre-sort them
1193 yourself if you want them to appear in the right order. */
1195
1196
1197 /** \brief OPB Overflow Count.
1198
1199 Preallocates this many extra OPBs (sets of tile bins), allowing the PVR
1200 to use the extra space when there's too much geometry in the first OPB.
1201
1202 Increasing this value can eliminate artifacts where pieces of geometry
1203 flicker in and out of existence along the tile boundaries. */
1204
1206
1207 /** \brief Disable vertex buffer double-buffering.
1208
1209 Use only one single vertex buffer. This means that the PVR must finish
1210 rendering before the Tile Accelerator is used to prepare a new frame;
1211 but it allows using much smaller vertex buffers. */
1213
1215
1216/** \brief Initialize the PVR chip to ready status.
1217 \ingroup pvr_init
1218
1219 This function enables the specified lists and uses the specified parameters.
1220 Note that bins and vertex buffers come from the texture memory pool, so only
1221 allocate what you actually need. Expects that a 2D mode was initialized
1222 already using the vid_* API.
1223
1224 \param params The set of parameters to initialize with
1225 \retval 0 On success
1226 \retval -1 If the PVR has already been initialized or the video
1227 mode active is not suitable for 3D
1228*/
1229int pvr_init(const pvr_init_params_t *params);
1230
1231/** \brief Simple PVR initialization.
1232 \ingroup pvr_init
1233
1234 This simpler function initializes the PVR using 16/16 for the opaque
1235 and translucent lists' bin sizes, and 0's for everything else. It sets 512KB
1236 of vertex buffer. This is equivalent to the old ta_init_defaults() for now.
1237
1238 \retval 0 On success
1239 \retval -1 If the PVR has already been initialized or the video
1240 mode active is not suitable for 3D
1241*/
1243
1244/** \brief Shut down the PVR chip from ready status.
1245 \ingroup pvr_init
1246
1247 This essentially leaves the video system in 2D mode as it was before the
1248 init.
1249
1250 \retval 0 On success
1251 \retval -1 If the PVR has not been initialized
1252*/
1254
1255
1256/* Scene rendering ***************************************************/
1257/** \defgroup pvr_scene_mgmt Scene Submission
1258 \brief PowerVR API for submitting scene geometry
1259 \ingroup pvr
1260
1261 This API is used to submit triangle strips to the PVR via the TA
1262 interface in the chip.
1263
1264 An important side note about the PVR is that all primitive types
1265 must be submitted grouped together. If you have 10 polygons for each
1266 list type, then the PVR must receive them via the TA by list type,
1267 with a list delimiter in between.
1268
1269 So there are two modes you can use here. The first mode allows you to
1270 submit data directly to the TA. Your data will be forwarded to the
1271 chip for processing as it is fed to the PVR module. If your data
1272 is easily sorted into the primitive types, then this is the fastest
1273 mode for submitting data.
1274
1275 The second mode allows you to submit data via main-RAM vertex buffers,
1276 which will be queued until the proper primitive type is active. In this
1277 case, each piece of data is copied into the vertex buffer while the
1278 wrong list is activated, and when the proper list becomes activated,
1279 the data is all sent at once. Ideally this would be via DMA, right
1280 now it is by store queues. This has the advantage of allowing you to
1281 send data in any order and have the PVR functions resolve how it should
1282 get sent to the hardware, but it is slower.
1283
1284 The nice thing is that any combination of these modes can be used. You
1285 can assign a vertex buffer for any list, and it will be used to hold the
1286 incoming vertex data until the proper list has come up. Or if the proper
1287 list is already up, the data will be submitted directly. So if most of
1288 your polygons are opaque, and you only have a couple of translucents,
1289 you can set a small buffer to gather translucent data and then it will
1290 get sent when you do a pvr_end_scene().
1291
1292 Thanks to Mikael Kalms for the idea for this API.
1293
1294 \note
1295 Another somewhat subtle point that bears mentioning is that in the normal
1296 case (interrupts enabled) an interrupt handler will automatically take
1297 care of starting a frame rendering (after scene_finish()) and also
1298 flipping pages when appropriate.
1299*/
1300
1301/** \defgroup pvr_vertex_dma Vertex DMA
1302 \brief Use the DMA to transfer inactive lists to the PVR
1303 \ingroup pvr_scene_mgmt
1304*/
1305
1306/** \brief Is vertex DMA enabled?
1307 \ingroup pvr_vertex_dma
1308
1309 \return Non-zero if vertex DMA was enabled at init time
1310*/
1312
1313/** \brief Setup a vertex buffer for one of the list types.
1314 \ingroup pvr_list_mgmt
1315
1316 If the specified list type already has a vertex buffer, it will be replaced
1317 by the new one.
1318
1319 \note
1320 Each buffer should actually be twice as long as what you will need to hold
1321 two frames worth of data).
1322
1323 \warning
1324 You should generally not try to do this at any time besides before a frame
1325 is begun, or Bad Things May Happen.
1326
1327 \param list The primitive list to set the buffer for.
1328 \param buffer The location of the buffer in main RAM. This must be
1329 aligned to a 32-byte boundary.
1330 \param len The length of the buffer. This must be a multiple of
1331 64, and must be at least 128 (even if you're not
1332 using the list).
1333
1334 \return The old buffer location (if any)
1335*/
1336void *pvr_set_vertbuf(pvr_list_t list, void *buffer, size_t len);
1337
1338/** \brief Retrieve a pointer to the current output location in the DMA buffer
1339 for the requested list.
1340 \ingroup pvr_vertex_dma
1341
1342 Vertex DMA must globally be enabled for this to work. Data may be added to
1343 this buffer by the user program directly; however, make sure to call
1344 pvr_vertbuf_written() to notify the system of any such changes.
1345
1346 \param list The primitive list to get the buffer for.
1347
1348 \return The tail of that list's buffer.
1349*/
1351
1352/** \brief Notify the PVR system that data have been written into the output
1353 buffer for the given list.
1354 \ingroup pvr_vertex_dma
1355
1356 This should always be done after writing data directly to these buffers or
1357 it will get overwritten by other data.
1358
1359 \param list The primitive list that was modified.
1360 \param amt Number of bytes written. Must be a multiple of 32.
1361*/
1362void pvr_vertbuf_written(pvr_list_t list, size_t amt);
1363
1364/** \brief Begin collecting data for a frame of 3D output to the off-screen
1365 frame buffer.
1366 \ingroup pvr_scene_mgmt
1367
1368 You must call this function (or pvr_scene_begin_txr()) for ever frame of
1369 output.
1370*/
1372
1373/** \brief Begin collecting data for a frame of 3D output to the specified
1374 texture.
1375 \ingroup pvr_scene_mgmt
1376
1377 This function currently only supports outputting at the same size as the
1378 actual screen. Thus, make sure rx and ry are at least large enough for that.
1379 For a 640x480 output, rx will generally be 1024 on input and ry 512, as
1380 these are the smallest values that are powers of two and will hold the full
1381 screen sized output.
1382
1383 \param txr The texture to render to.
1384 \param rx Width of the texture buffer (in pixels).
1385 \param ry Height of the texture buffer (in pixels).
1386*/
1387void pvr_scene_begin_txr(pvr_ptr_t txr, uint32_t *rx, uint32_t *ry);
1388
1389
1390/** \defgroup pvr_list_mgmt Polygon Lists
1391 \brief PVR API for managing list submission
1392 \ingroup pvr_scene_mgmt
1393*/
1394
1395/** \brief Begin collecting data for the given list type.
1396 \ingroup pvr_list_mgmt
1397
1398 Lists do not have to be submitted in any particular order, but all types of
1399 a list must be submitted at once (unless vertex DMA mode is enabled).
1400
1401 Note that there is no need to call this function in DMA mode unless you want
1402 to make use of pvr_prim() for compatibility. This function will
1403 automatically call pvr_list_finish() if a list is already opened before
1404 opening the new list.
1405
1406 \param list The list to open.
1407 \retval 0 On success.
1408 \retval -1 If the specified list has already been closed.
1409*/
1411
1412/** \brief End collecting data for the current list type.
1413 \ingroup pvr_list_mgmt
1414
1415 Lists can never be opened again within a single frame once they have been
1416 closed. Thus submitting a primitive that belongs in a closed list is
1417 considered an error. Closing a list that is already closed is also an error.
1418
1419 Note that if you open a list but do not submit any primitives, a blank one
1420 will be submitted to satisfy the hardware. If vertex DMA mode is enabled,
1421 then this simply sets the current list pointer to no list, and none of the
1422 above restrictions apply.
1423
1424 \retval 0 On success.
1425 \retval -1 On error.
1426*/
1428
1429/** \brief Submit a primitive of the current list type.
1430 \ingroup pvr_list_mgmt
1431
1432 Note that any values submitted in this fashion will go directly to the
1433 hardware without any sort of buffering, and submitting a primitive of the
1434 wrong type will quite likely ruin your scene. Note that this also will not
1435 work if you haven't begun any list types (i.e., all data is queued). If DMA
1436 is enabled, the primitive will be appended to the end of the currently
1437 selected list's buffer.
1438
1439 \warning
1440 \p data must be 32-byte aligned!
1441
1442 \param data The primitive to submit.
1443 \param size The length of the primitive, in bytes. Must be a
1444 multiple of 32.
1445
1446 \retval 0 On success.
1447 \retval -1 On error.
1448*/
1449int pvr_prim(const void *data, size_t size);
1450
1451/** \defgroup pvr_direct Direct Rendering
1452 \brief API for using direct rendering with the PVR
1453 \ingroup pvr_scene_mgmt
1454
1455 @{
1456*/
1457
1458/** \brief Direct Rendering state variable type. */
1459typedef uint32_t pvr_dr_state_t;
1460
1461/** \brief Initialize a state variable for Direct Rendering.
1462
1463 Store Queues are used.
1464
1465 \param vtx_buf_ptr A variable of type pvr_dr_state_t to init.
1466*/
1467void pvr_dr_init(pvr_dr_state_t *vtx_buf_ptr);
1468
1469/** \brief Obtain the target address for Direct Rendering.
1470
1471 \param vtx_buf_ptr State variable for Direct Rendering. Should be of
1472 type pvr_dr_state_t, and must have been initialized
1473 previously in the scene with pvr_dr_init().
1474
1475 \return A write-only destination address where a primitive
1476 should be written to get ready to submit it to the
1477 TA in DR mode.
1478*/
1479#define pvr_dr_target(vtx_buf_ptr) \
1480 ({ (vtx_buf_ptr) ^= 32; \
1481 (pvr_vertex_t *)(MEM_AREA_SQ_BASE | (vtx_buf_ptr)); \
1482 })
1483
1484/** \brief Commit a primitive written into the Direct Rendering target address.
1485
1486 \param addr The address returned by pvr_dr_target(), after you
1487 have written the primitive to it.
1488*/
1489#define pvr_dr_commit(addr) sq_flush(addr)
1490
1491/** \brief Finish work with Direct Rendering.
1492
1493 Called atomatically in pvr_scene_finish().
1494 Use it manually if you want to release Store Queues earlier.
1495
1496*/
1497void pvr_dr_finish(void);
1498
1499/** \brief Upload a 32-byte payload to the Tile Accelerator
1500
1501 Upload the given payload to the Tile Accelerator. The difference with the
1502 Direct Rendering approach above is that the Store Queues are not used, and
1503 therefore can be used for anything else.
1504
1505 \param data A pointer to the 32-byte payload.
1506 The pointer must be aligned to 8 bytes.
1507*/
1508void pvr_send_to_ta(void *data);
1509
1510/** @} */
1511
1512/** \brief Submit a primitive of the given list type.
1513 \ingroup pvr_list_mgmt
1514
1515 Data will be queued in a vertex buffer, thus one must be available for the
1516 list specified (will be asserted by the code).
1517
1518 \param list The list to submit to.
1519 \param data The primitive to submit.
1520 \param size The size of the primitive in bytes. This must be a
1521 multiple of 32.
1522
1523 \retval 0 On success.
1524 \retval -1 On error.
1525*/
1526int pvr_list_prim(pvr_list_t list, const void *data, size_t size);
1527
1528/** \brief Flush the buffered data of the given list type to the TA.
1529 \ingroup pvr_list_mgmt
1530
1531 This function is currently not implemented, and calling it will result in an
1532 assertion failure. It is intended to be used later in a "hybrid" mode where
1533 both direct and DMA TA submission is possible.
1534
1535 \param list The list to flush.
1536
1537 \retval -1 On error (it is not possible to succeed).
1538*/
1540
1541/** \brief Call this after you have finished submitting all data for a frame.
1542 \ingroup pvr_scene_mgmt
1543
1544 Once this has been called, you can not submit any more data until one of the
1545 pvr_scene_begin() or pvr_scene_begin_txr() functions is called again.
1546
1547 \retval 0 On success.
1548 \retval -1 On error (no scene started).
1549*/
1551
1552/** \brief Block the caller until the PVR system is ready for another frame to
1553 be submitted.
1554 \ingroup pvr_scene_mgmt
1555
1556 The PVR system allocates enough space for two frames: one in data collection
1557 mode, and another in rendering mode. If a frame is currently rendering, and
1558 another frame has already been closed, then the caller cannot do anything
1559 else until the rendering frame completes. Note also that the new frame
1560 cannot be activated except during a vertical blanking period, so this
1561 essentially waits until a rendered frame is complete and a vertical blank
1562 happens.
1563
1564 \retval 0 On success. A new scene can be started now.
1565 \retval -1 On error. Something is probably very wrong...
1566*/
1568
1569/** \brief Check if the PVR system is ready for another frame to be submitted.
1570 \ingroup pvr_scene_mgmt
1571
1572 \retval 0 If the PVR is ready for a new scene. You must call
1573 pvr_wait_ready() afterwards, before starting a new
1574 scene.
1575 \retval -1 If the PVR is not ready for a new scene yet.
1576*/
1578
1579/** \brief Block the caller until the PVR has finished rendering the previous
1580 frame.
1581 \ingroup pvr_scene_mgmt
1582
1583 This function can be used to wait until the PVR is done rendering a previous
1584 scene. This can be useful for instance to make sure that the PVR is done
1585 using textures that have to be updated, before updating those.
1586
1587 \retval 0 On success.
1588 \retval -1 On error. Something is probably very wrong...
1589*/
1591
1592
1593/* Primitive handling ************************************************/
1594
1595/** \defgroup pvr_primitives_compilation Compilation
1596 \brief API for compiling primitive contexts
1597 into headers
1598 \ingroup pvr_ctx
1599*/
1600
1601/** \brief Compile a polygon context into a polygon header.
1602 \ingroup pvr_primitives_compilation
1603
1604 This function compiles a pvr_poly_cxt_t into the form needed by the hardware
1605 for rendering. This is for use with normal polygon headers.
1606
1607 \param dst Where to store the compiled header.
1608 \param src The context to compile.
1609*/
1611
1612/** \defgroup pvr_ctx_init Initialization
1613 \brief Functions for initializing PVR polygon contexts
1614 \ingroup pvr_ctx
1615*/
1616
1617/** \brief Fill in a polygon context for non-textured polygons.
1618 \ingroup pvr_ctx_init
1619
1620 This function fills in a pvr_poly_cxt_t with default parameters appropriate
1621 for rendering a non-textured polygon in the given list.
1622
1623 \param dst Where to store the polygon context.
1624 \param list The primitive list to be used.
1625*/
1627
1628/** \brief Fill in a polygon context for a textured polygon.
1629 \ingroup pvr_ctx_init
1630
1631 This function fills in a pvr_poly_cxt_t with default parameters appropriate
1632 for rendering a textured polygon in the given list.
1633
1634 \param dst Where to store the polygon context.
1635 \param list The primitive list to be used.
1636 \param textureformat The format of the texture used.
1637 \param tw The width of the texture, in pixels.
1638 \param th The height of the texture, in pixels.
1639 \param textureaddr A pointer to the texture.
1640 \param filtering The type of filtering to use.
1641
1642 \see pvr_txr_fmts
1643 \see pvr_filter_modes
1644*/
1646 int textureformat, int tw, int th, pvr_ptr_t textureaddr,
1647 int filtering);
1648
1649/** \brief Compile a sprite context into a sprite header.
1650 \ingroup pvr_primitives_compilation
1651
1652 This function compiles a pvr_sprite_cxt_t into the form needed by the
1653 hardware for rendering. This is for use with sprite headers.
1654
1655 \param dst Where to store the compiled header.
1656 \param src The context to compile.
1657*/
1659 const pvr_sprite_cxt_t *src);
1660
1661/** \brief Fill in a sprite context for non-textured sprites.
1662 \ingroup pvr_ctx_init
1663
1664 This function fills in a pvr_sprite_cxt_t with default parameters
1665 appropriate for rendering a non-textured sprite in the given list.
1666
1667 \param dst Where to store the sprite context.
1668 \param list The primitive list to be used.
1669*/
1671
1672/** \brief Fill in a sprite context for a textured sprite.
1673 \ingroup pvr_ctx_init
1674
1675 This function fills in a pvr_sprite_cxt_t with default parameters
1676 appropriate for rendering a textured sprite in the given list.
1677
1678 \param dst Where to store the sprite context.
1679 \param list The primitive list to be used.
1680 \param textureformat The format of the texture used.
1681 \param tw The width of the texture, in pixels.
1682 \param th The height of the texture, in pixels.
1683 \param textureaddr A pointer to the texture.
1684 \param filtering The type of filtering to use.
1685
1686 \see pvr_txr_fmts
1687 \see pvr_filter_modes
1688*/
1690 int textureformat, int tw, int th, pvr_ptr_t textureaddr,
1691 int filtering);
1692
1693/** \brief Create a modifier volume header.
1694 \ingroup pvr_primitives_compilation
1695
1696 This function fills in a modifier volume header with the parameters
1697 specified. Note that unlike for polygons and sprites, there is no context
1698 step for modifiers.
1699
1700 \param dst Where to store the modifier header.
1701 \param list The primitive list to be used.
1702 \param mode The mode for this modifier.
1703 \param cull The culling mode to use.
1704
1705 \see pvr_mod_modes
1706 \see pvr_cull_modes
1707*/
1708void pvr_mod_compile(pvr_mod_hdr_t *dst, pvr_list_t list, uint32_t mode,
1709 uint32_t cull);
1710
1711/** \brief Compile a polygon context into a polygon header that is affected by
1712 modifier volumes.
1713 \ingroup pvr_primitives_compilation
1714
1715 This function works pretty similarly to pvr_poly_compile(), but compiles
1716 into the header type that is affected by a modifier volume. The context
1717 should have been created with either pvr_poly_cxt_col_mod() or
1718 pvr_poly_cxt_txr_mod().
1719
1720 \param dst Where to store the compiled header.
1721 \param src The context to compile.
1722*/
1724
1725/** \brief Fill in a polygon context for non-textured polygons affected by a
1726 modifier volume.
1727 \ingroup pvr_ctx_init
1728
1729 This function fills in a pvr_poly_cxt_t with default parameters appropriate
1730 for rendering a non-textured polygon in the given list that will be affected
1731 by modifier volumes.
1732
1733 \param dst Where to store the polygon context.
1734 \param list The primitive list to be used.
1735*/
1737
1738/** \brief Fill in a polygon context for a textured polygon affected by
1739 modifier volumes.
1740 \ingroup pvr_ctx_init
1741
1742 This function fills in a pvr_poly_cxt_t with default parameters appropriate
1743 for rendering a textured polygon in the given list and being affected by
1744 modifier volumes.
1745
1746 \param dst Where to store the polygon context.
1747 \param list The primitive list to be used.
1748 \param textureformat The format of the texture used (outside).
1749 \param tw The width of the texture, in pixels (outside).
1750 \param th The height of the texture, in pixels (outside).
1751 \param textureaddr A pointer to the texture (outside).
1752 \param filtering The type of filtering to use (outside).
1753 \param textureformat2 The format of the texture used (inside).
1754 \param tw2 The width of the texture, in pixels (inside).
1755 \param th2 The height of the texture, in pixels (inside).
1756 \param textureaddr2 A pointer to the texture (inside).
1757 \param filtering2 The type of filtering to use (inside).
1758
1759 \see pvr_txr_fmts
1760 \see pvr_filter_modes
1761*/
1763 int textureformat, int tw, int th,
1764 pvr_ptr_t textureaddr, int filtering,
1765 int textureformat2, int tw2, int th2,
1766 pvr_ptr_t textureaddr2, int filtering2);
1767
1768/** \brief Get a pointer to the front buffer.
1769 \ingroup pvr_txr_mgmt
1770
1771 This function can be used to retrieve a pointer to the front buffer, aka.
1772 the last fully rendered buffer that is either being displayed right now,
1773 or is queued to be displayed.
1774
1775 Note that the frame buffers lie in 32-bit memory, while textures lie in
1776 64-bit memory. The address returned will point to 64-bit memory, but the
1777 front buffer cannot be used directly as a regular texture.
1778
1779 \return A pointer to the front buffer.
1780*/
1782
1783/*********************************************************************/
1784
1785#include "pvr/pvr_regs.h"
1786#include "pvr/pvr_misc.h"
1787#include "pvr/pvr_dma.h"
1788#include "pvr/pvr_fog.h"
1789#include "pvr/pvr_pal.h"
1790#include "pvr/pvr_txr.h"
1791
1792__END_DECLS
1793
1794#endif
Cache management functionality.
void pvr_sprite_cxt_txr(pvr_sprite_cxt_t *dst, pvr_list_t list, int textureformat, int tw, int th, pvr_ptr_t textureaddr, int filtering)
Fill in a sprite context for a textured sprite.
void pvr_poly_cxt_col_mod(pvr_poly_cxt_t *dst, pvr_list_t list)
Fill in a polygon context for non-textured polygons affected by a modifier volume.
void pvr_poly_cxt_txr_mod(pvr_poly_cxt_t *dst, pvr_list_t list, int textureformat, int tw, int th, pvr_ptr_t textureaddr, int filtering, int textureformat2, int tw2, int th2, pvr_ptr_t textureaddr2, int filtering2)
Fill in a polygon context for a textured polygon affected by modifier volumes.
void pvr_poly_cxt_txr(pvr_poly_cxt_t *dst, pvr_list_t list, int textureformat, int tw, int th, pvr_ptr_t textureaddr, int filtering)
Fill in a polygon context for a textured polygon.
void pvr_poly_cxt_col(pvr_poly_cxt_t *dst, pvr_list_t list)
Fill in a polygon context for non-textured polygons.
void pvr_sprite_cxt_col(pvr_sprite_cxt_t *dst, pvr_list_t list)
Fill in a sprite context for non-textured sprites.
void pvr_send_to_ta(void *data)
Upload a 32-byte payload to the Tile Accelerator.
void pvr_dr_init(pvr_dr_state_t *vtx_buf_ptr)
Initialize a state variable for Direct Rendering.
uint32_t pvr_dr_state_t
Direct Rendering state variable type.
Definition pvr.h:1459
void pvr_dr_finish(void)
Finish work with Direct Rendering.
int pvr_shutdown(void)
Shut down the PVR chip from ready status.
int pvr_init_defaults(void)
Simple PVR initialization.
int pvr_init(const pvr_init_params_t *params)
Initialize the PVR chip to ready status.
void * pvr_set_vertbuf(pvr_list_t list, void *buffer, size_t len)
Setup a vertex buffer for one of the list types.
int pvr_list_flush(pvr_list_t list)
Flush the buffered data of the given list type to the TA.
int pvr_prim(const void *data, size_t size)
Submit a primitive of the current list type.
int pvr_list_finish(void)
End collecting data for the current list type.
int pvr_list_prim(pvr_list_t list, const void *data, size_t size)
Submit a primitive of the given list type.
int pvr_list_begin(pvr_list_t list)
Begin collecting data for the given list type.
uint32_t pvr_list_t
PVR list specification.
Definition pvr.h:77
void pvr_mod_compile(pvr_mod_hdr_t *dst, pvr_list_t list, uint32_t mode, uint32_t cull)
Create a modifier volume header.
void pvr_poly_compile(pvr_poly_hdr_t *dst, const pvr_poly_cxt_t *src)
Compile a polygon context into a polygon header.
void pvr_poly_mod_compile(pvr_poly_mod_hdr_t *dst, const pvr_poly_cxt_t *src)
Compile a polygon context into a polygon header that is affected by modifier volumes.
void pvr_sprite_compile(pvr_sprite_hdr_t *dst, const pvr_sprite_cxt_t *src)
Compile a sprite context into a sprite header.
int pvr_scene_finish(void)
Call this after you have finished submitting all data for a frame.
void pvr_scene_begin_txr(pvr_ptr_t txr, uint32_t *rx, uint32_t *ry)
Begin collecting data for a frame of 3D output to the specified texture.
void pvr_scene_begin(void)
Begin collecting data for a frame of 3D output to the off-screen frame buffer.
int pvr_check_ready(void)
Check if the PVR system is ready for another frame to be submitted.
int pvr_wait_ready(void)
Block the caller until the PVR system is ready for another frame to be submitted.
int pvr_wait_render_done(void)
Block the caller until the PVR has finished rendering the previous frame.
pvr_ptr_t pvr_get_front_buffer(void)
Get a pointer to the front buffer.
void pvr_vertbuf_written(pvr_list_t list, size_t amt)
Notify the PVR system that data have been written into the output buffer for the given list.
int pvr_vertex_dma_enabled(void)
Is vertex DMA enabled?
void * pvr_vertbuf_tail(pvr_list_t list)
Retrieve a pointer to the current output location in the DMA buffer for the requested list.
void * pvr_ptr_t
PVR texture memory pointer.
Definition pvr_mem.h:45
Platform-independent image type.
Constants for areas of the system memory map.
API for utilizing the DMA with the PVR for rendering.
Public API for the PVR's hardware fog.
VRAM Management and Access.
Miscellaneous utilities for the PVR API.
Palette API for the PowerVR.
PVR Driver Registers.
Texture management with the PVR 3D API.
Macros to help dealing with register fields.
Functions to access the SH4 Store Queues.
PVR initialization structure.
Definition pvr.h:1162
int fsaa_enabled
Enable horizontal scaling?
Definition pvr.h:1186
int vbuf_doublebuf_disabled
Disable vertex buffer double-buffering.
Definition pvr.h:1212
int dma_enabled
Enable vertex DMA?
Definition pvr.h:1179
int vertex_buf_size
Vertex buffer size (should be a nice round number)
Definition pvr.h:1171
int autosort_disabled
Disable translucent polygon autosort?
Definition pvr.h:1194
int opb_overflow_count
OPB Overflow Count.
Definition pvr.h:1205
Modifier volume header.
Definition pvr.h:804
uint32_t d4
Dummy value.
Definition pvr.h:811
uint32_t mode1
Parameter word 1.
Definition pvr.h:807
uint32_t d5
Dummy value.
Definition pvr.h:812
uint32_t d2
Dummy value.
Definition pvr.h:809
uint32_t d3
Dummy value.
Definition pvr.h:810
uint32_t d1
Dummy value.
Definition pvr.h:808
uint32_t d6
Dummy value.
Definition pvr.h:813
PVR vertex type: Modifier volume.
Definition pvr.h:955
uint32_t d1
Dummy value.
Definition pvr.h:967
uint32_t d4
Dummy value.
Definition pvr.h:970
float by
Second Y coordinate.
Definition pvr.h:962
float ay
First Y coordinate.
Definition pvr.h:959
float ax
First X coordinate.
Definition pvr.h:958
uint32_t d3
Dummy value.
Definition pvr.h:969
float cz
Third Z coordinate.
Definition pvr.h:966
float bz
Second Z coordinate.
Definition pvr.h:963
float cy
Third Y coordinate.
Definition pvr.h:965
uint32_t d6
Dummy value.
Definition pvr.h:972
uint32_t d2
Dummy value.
Definition pvr.h:968
uint32_t d5
Dummy value.
Definition pvr.h:971
float bx
Second X coordinate.
Definition pvr.h:961
float az
First Z coordinate.
Definition pvr.h:960
float cx
Third X coordinate.
Definition pvr.h:964
PVR polygon context.
Definition pvr.h:111
int clip_mode
Clipping mode.
Definition pvr.h:125
int modifier_mode
Modifier mode.
Definition pvr.h:127
int mipmap_bias
Mipmap bias.
Definition pvr.h:176
int src2
Source blending mode inside modifier.
Definition pvr.h:146
int write
Enable or disable depth writes.
Definition pvr.h:166
int dst_enable
Dest blending enable outside modifier.
Definition pvr.h:144
int dst
Dest blending mode outside modifier.
Definition pvr.h:140
int fog_type2
Fog type inside modifier.
Definition pvr.h:132
int src
Source blending mode outside modifier.
Definition pvr.h:138
int color_clamp2
Color clamp enable/disable inside modifier.
Definition pvr.h:134
int alpha2
Enable/disable alpha inside modifier.
Definition pvr.h:130
int env
Texture color contribution.
Definition pvr.h:184
pvr_ptr_t base
Texture pointer.
Definition pvr.h:190
int culling
Culling mode.
Definition pvr.h:121
int width
Texture width (requires a power of 2)
Definition pvr.h:186
int color
Color format in vertex.
Definition pvr.h:156
int specular
Offset color enable/disable outside modifier.
Definition pvr.h:128
int height
Texture height (requires a power of 2)
Definition pvr.h:187
int comparison
Depth comparison mode.
Definition pvr.h:164
int src_enable
Source blending enable outside modifier.
Definition pvr.h:142
int dst2
Dest blending mode inside modifier.
Definition pvr.h:148
int fog_type
Fog type outside modifier.
Definition pvr.h:119
int shading
Shading type.
Definition pvr.h:117
int modifier
Enable or disable modifier effect.
Definition pvr.h:160
int uv_flip
Enable/disable U/V flipping.
Definition pvr.h:178
int list_type
Primitive list.
Definition pvr.h:112
int mipmap
Enable/disable mipmaps.
Definition pvr.h:174
int dst_enable2
Dest blending mode inside modifier.
Definition pvr.h:152
int filter
Filtering mode.
Definition pvr.h:172
int src_enable2
Source blending mode inside modifier.
Definition pvr.h:150
int color_clamp
Color clamp enable/disable outside modifier.
Definition pvr.h:123
int uv_clamp
Enable/disable U/V clamping.
Definition pvr.h:180
int alpha
Enable or disable alpha outside modifier.
Definition pvr.h:115
int format
Texture format.
Definition pvr.h:188
int enable
Enable/disable texturing.
Definition pvr.h:170
int uv
U/V data format in vertex.
Definition pvr.h:158
PVR polygon header.
Definition pvr.h:729
uint32_t d1
Dummy value.
Definition pvr.h:735
uint32_t mode3
Parameter word 3.
Definition pvr.h:734
uint32_t mode1
Parameter word 1.
Definition pvr.h:732
uint32_t mode2
Parameter word 2.
Definition pvr.h:733
uint32_t d2
Dummy value.
Definition pvr.h:736
uint32_t d3
Dummy value.
Definition pvr.h:737
uint32_t d4
Dummy value.
Definition pvr.h:738
PVR polygon header with intensity color.
Definition pvr.h:747
float b
Face color blue component.
Definition pvr.h:756
uint32_t mode3
Parameter word 3.
Definition pvr.h:752
float r
Face color red component.
Definition pvr.h:754
uint32_t mode1
Parameter word 1.
Definition pvr.h:750
float a
Face color alpha component.
Definition pvr.h:753
uint32_t mode2
Parameter word 2.
Definition pvr.h:751
float g
Face color green component.
Definition pvr.h:755
PVR polygon header to be used with modifier volumes.
Definition pvr.h:766
uint32_t mode3_1
Parameter word 3 (inside volume)
Definition pvr.h:773
uint32_t d2
Dummy value.
Definition pvr.h:775
uint32_t mode2_0
Parameter word 2 (outside volume)
Definition pvr.h:770
uint32_t d1
Dummy value.
Definition pvr.h:774
uint32_t mode2_1
Parameter word 2 (inside volume)
Definition pvr.h:772
uint32_t mode1
Parameter word 1.
Definition pvr.h:769
uint32_t mode3_0
Parameter word 3 (outside volume)
Definition pvr.h:771
PVR vertex type: Untextured sprite.
Definition pvr.h:930
float bz
Second Z coordinate.
Definition pvr.h:938
float ay
First Y coordinate.
Definition pvr.h:934
uint32_t d3
Dummy value.
Definition pvr.h:946
float cz
Third Z coordinate.
Definition pvr.h:941
float bx
Second X coordinate.
Definition pvr.h:936
uint32_t d1
Dummy value.
Definition pvr.h:944
float cy
Third Y coordinate.
Definition pvr.h:940
float ax
First X coordinate.
Definition pvr.h:933
float by
Second Y coordinate.
Definition pvr.h:937
uint32_t d4
Dummy value.
Definition pvr.h:947
float dy
Fourth Y coordinate.
Definition pvr.h:943
uint32_t d2
Dummy value.
Definition pvr.h:945
float cx
Third X coordinate.
Definition pvr.h:939
float az
First Z coordinate.
Definition pvr.h:935
float dx
Fourth X coordinate.
Definition pvr.h:942
PVR sprite context.
Definition pvr.h:230
int color_clamp
Color clamp enable/disable.
Definition pvr.h:240
int write
Enable or disable depth writes.
Definition pvr.h:260
int env
Texture color contribution.
Definition pvr.h:278
int enable
Enable/disable texturing.
Definition pvr.h:264
int src_enable
Source blending enable.
Definition pvr.h:252
int dst
Dest blending mode.
Definition pvr.h:250
int clip_mode
Clipping mode.
Definition pvr.h:242
int list_type
Primitive list.
Definition pvr.h:231
int dst_enable
Dest blending enable.
Definition pvr.h:254
int specular
Offset color enable/disable.
Definition pvr.h:244
int src
Source blending mode.
Definition pvr.h:248
int alpha
Enable or disable alpha.
Definition pvr.h:234
int width
Texture width (requires a power of 2)
Definition pvr.h:280
int filter
Filtering mode.
Definition pvr.h:266
int comparison
Depth comparison mode.
Definition pvr.h:258
pvr_ptr_t base
Texture pointer.
Definition pvr.h:284
int mipmap
Enable/disable mipmaps.
Definition pvr.h:268
int mipmap_bias
Mipmap bias.
Definition pvr.h:270
int uv_flip
Enable/disable U/V flipping.
Definition pvr.h:272
int uv_clamp
Enable/disable U/V clamping.
Definition pvr.h:274
int fog_type
Fog type.
Definition pvr.h:236
int height
Texture height (requires a power of 2)
Definition pvr.h:281
int format
Texture format.
Definition pvr.h:282
int culling
Culling mode.
Definition pvr.h:238
PVR polygon header specifically for sprites.
Definition pvr.h:785
uint32_t oargb
Sprite offset color.
Definition pvr.h:792
uint32_t d2
Dummy value.
Definition pvr.h:794
uint32_t mode1
Parameter word 1.
Definition pvr.h:788
uint32_t mode2
Parameter word 2.
Definition pvr.h:789
uint32_t d1
Dummy value.
Definition pvr.h:793
uint32_t mode3
Parameter word 3.
Definition pvr.h:790
uint32_t argb
Sprite face color.
Definition pvr.h:791
PVR vertex type: Textured sprite.
Definition pvr.h:905
float bz
Second Z coordinate.
Definition pvr.h:913
float dx
Fourth X coordinate.
Definition pvr.h:917
float az
First Z coordinate.
Definition pvr.h:910
float ax
First X coordinate.
Definition pvr.h:908
uint32_t buv
Second U/V texture coordinates.
Definition pvr.h:921
float cz
Third Z coordinate.
Definition pvr.h:916
uint32_t dummy
Dummy value.
Definition pvr.h:919
float by
Second Y coordinate.
Definition pvr.h:912
uint32_t auv
First U/V texture coordinates.
Definition pvr.h:920
float dy
Fourth Y coordinate.
Definition pvr.h:918
float cx
Third X coordinate.
Definition pvr.h:914
uint32_t cuv
Third U/V texture coordinates.
Definition pvr.h:922
float bx
Second X coordinate.
Definition pvr.h:911
float cy
Third Y coordinate.
Definition pvr.h:915
float ay
First Y coordinate.
Definition pvr.h:909
PVR vertex type: Non-textured, packed color, affected by modifier volume.
Definition pvr.h:853
float z
Z coordinate.
Definition pvr.h:858
uint32_t d1
Dummy value.
Definition pvr.h:861
uint32_t argb0
Vertex color (outside volume)
Definition pvr.h:859
float x
X coordinate.
Definition pvr.h:856
float y
Y coordinate.
Definition pvr.h:857
uint32_t d2
Dummy value.
Definition pvr.h:862
uint32_t argb1
Vertex color (inside volume)
Definition pvr.h:860
Generic PVR vertex type.
Definition pvr.h:833
float z
Z coordinate.
Definition pvr.h:838
float y
Y coordinate.
Definition pvr.h:837
float u
Texture U coordinate.
Definition pvr.h:839
uint32_t oargb
Vertex offset color.
Definition pvr.h:842
float x
X coordinate.
Definition pvr.h:836
float v
Texture V coordinate.
Definition pvr.h:840
uint32_t argb
Vertex color.
Definition pvr.h:841
PVR vertex type: Textured, packed color, affected by modifier volume.
Definition pvr.h:873
float z
Z coordinate.
Definition pvr.h:878
uint32_t oargb1
Vertex offset color (inside)
Definition pvr.h:886
uint32_t oargb0
Vertex offset color (outside)
Definition pvr.h:882
float x
X coordinate.
Definition pvr.h:876
float u0
Texture U coordinate (outside)
Definition pvr.h:879
uint32_t d2
Dummy value.
Definition pvr.h:888
float v0
Texture V coordinate (outside)
Definition pvr.h:880
uint32_t d4
Dummy value.
Definition pvr.h:890
float u1
Texture U coordinate (inside)
Definition pvr.h:883
float y
Y coordinate.
Definition pvr.h:877
float v1
Texture V coordinate (inside)
Definition pvr.h:884
uint32_t argb0
Vertex color (outside)
Definition pvr.h:881
uint32_t argb1
Vertex color (inside)
Definition pvr.h:885
uint32_t d1
Dummy value.
Definition pvr.h:887
uint32_t d3
Dummy value.
Definition pvr.h:889
Common integer types.