Age | Commit message (Collapse) | Author | |
---|---|---|---|
2010-09-24 | nvfx: add RGB framebuffer format support in addition to BGR | Luca Barbieri | |
2010-09-24 | nvfx: allow setting NULL constant buffers | Luca Barbieri | |
2010-09-22 | nvfx: remove gl_PointCoord hack | Luca Barbieri | |
Now Gallium has the proper fix, thanks to Brian Paul. | |||
2010-09-18 | nvfx: Silence uninitialized variable warnings. | Vinson Lee | |
2010-09-18 | nvfx: Remove const qualifer from nvfx_vertprog_translate. | Vinson Lee | |
Silences this GCC warning. nvfx_vertprog.c: In function 'nvfx_vertprog_translate': nvfx_vertprog.c:998: warning: assignment discards qualifiers from pointer target type | |||
2010-09-15 | nvfx: Silence uninitialized variable warnings. | Vinson Lee | |
2010-09-14 | gallium: introduce get_shader_param (ALL DRIVERS CHANGED) (v3) | Luca Barbieri | |
Changes in v3: - Also change trace, which I forgot about Changes in v2: - No longer adds tessellation shaders Currently each shader cap has FS and VS versions. However, we want a version of them for geometry, tessellation control, and tessellation evaluation shaders, and want to be able to easily query a given cap type for a given shader stage. Since having 5 duplicates of each shader cap is unmanageable, add a new get_shader_param function that takes both a shader cap from a new enum and a shader stage. Drivers with non-unified shaders will first switch on the shader and, within each case, switch on the cap. Drivers with unified shaders instead first check whether the shader is supported, and then switch on the cap. MAX_CONST_BUFFERS is now per-stage. The geometry shader cap is removed in favor of checking whether the limit of geometry shader instructions is greater than 0, which is also used for tessellation shaders. WARNING: all drivers changed and compiled but only nvfx tested | |||
2010-09-12 | nvfx: Remove unused variables. | Vinson Lee | |
2010-09-12 | nvfx: Move declaration before code. | Vinson Lee | |
Fixes SCons build. | |||
2010-09-11 | nv30: fix breakage due to 10 texcoord support on nv40 | Luca Barbieri | |
2010-09-06 | nvfx: fix return in vp main | Luca Barbieri | |
2010-09-05 | nvfx: support nv30 simulation on nv40 | Luca Barbieri | |
2010-09-05 | nvfx: move nv04_2d to rules-ng-ng | Luca Barbieri | |
2010-09-05 | nvfx: switch to rules-ng-ng register headers | Luca Barbieri | |
This is the new register generation toolkit in use by nouveau. As far as I know, this is the best register description toolkit in existence, and you should use it too for your hardware :) Thanks to Marcin Kościelnicki for inventing it and performing invaluable reverse engineering work of nVidia chips. | |||
2010-09-05 | nvfx: remove remaining BEGIN_RING/eng3d uses | Luca Barbieri | |
2010-09-05 | nvfx: pause occlusion queries during blitter usage | Luca Barbieri | |
Thanks for Dave Airlie and Jerome Glisse for their code which made me realize I need this too. | |||
2010-09-05 | nvfx: properly return fogcoord.w == 1 | Luca Barbieri | |
Hardware sets it to 0, so we add an ADD to put an 1 there if the application really wants the alpha channel. | |||
2010-09-05 | nvfx: support saturate in vp | Luca Barbieri | |
Completely untested, since Mesa apparently never uses this currently. In particular, it might not work with scalar slot op. | |||
2010-09-05 | nvfx: add rewritten swtnl support | Luca Barbieri | |
The old swtnl code was broken by the new shader linkage support for GLSL. This is a rewrite of swtnl support, which should instead work properly, be faster and more closer to the much more tested hardware pipeline. | |||
2010-09-05 | nvfx: use a piglit-ignored format for unknown cap message | Luca Barbieri | |
2010-09-05 | nvfx: support unlimited constants and immediates in fp | Luca Barbieri | |
2010-09-05 | nvfx: support using blitter to copy depth/stencil resources, fix Heaven | Luca Barbieri | |
We might want to copy them as color ones though. Also works around crash in Unigine Heaven due to failing to allocate a 64 MB temporary in GART for a CPU copy. Unigine Heaven now works on nv40, albeit with very heavy glitches (with the floating branch with render_hdr 0). | |||
2010-09-04 | nvfx: support rendering to more formats | Luca Barbieri | |
2010-09-04 | nvfx: move 2D format selection logic to 2D code | Luca Barbieri | |
2010-09-04 | nvfx: fix swizzling of high bpp surfaces | Luca Barbieri | |
2010-09-04 | nvfx: fix some subrectangle copies | Luca Barbieri | |
Actually, we may want to get rid of the x/y coordinates for linear surfaces, and realign the origin from scratch if necessary, instead of doing this "on-demand realignment". | |||
2010-09-04 | nvfx: fix inlinining in nv04_2d.c | Luca Barbieri | |
2010-09-04 | nvfx: fix the temporary copying logic and add asserts | Luca Barbieri | |
2010-09-04 | nvfx: prevent swizzled rendering into formats where it's not supported | Luca Barbieri | |
2010-09-04 | nvfx: consolidate tiny files | Luca Barbieri | |
We probably want to reorganize the remaining files too, but that's for later, maybe. | |||
2010-09-04 | nvfx: fix vp DP2 | Luca Barbieri | |
2010-09-04 | nvfx: implement fp SSG properly | Luca Barbieri | |
2010-09-04 | nvfx: don't claim we support preds since the driver doesn't | Luca Barbieri | |
2010-09-04 | nv40: support all 10 texcoords | Luca Barbieri | |
2010-09-04 | nvfx: add missing context init | Luca Barbieri | |
2010-09-04 | nvfx: tidy up state_emit | Luca Barbieri | |
2010-09-04 | nvfx: support all coord conventions in hardware | Luca Barbieri | |
2010-09-04 | nvfx: add missing pushbuffer space check | Luca Barbieri | |
2010-09-04 | nvfx: support all possible vs consts | Luca Barbieri | |
We were incorrectly setting a register that limited the range of constants accessible via indirect addressing. Setting it correctly, we can address all the constants the GPU supports. | |||
2010-09-04 | nvfx: set magic bit to round NPOT mipmap sizes down and not up | Luca Barbieri | |
Does any API even use rounding-up? | |||
2010-09-04 | nvfx: allow nested blitter usage, fixing bug in clear | Luca Barbieri | |
2010-09-03 | nvfx: implement LIT in fp | Luca Barbieri | |
2010-09-03 | nvfx: fix division by zero in vp-ignore-input | Luca Barbieri | |
2010-09-03 | nvfx: report correct max lodbias | Luca Barbieri | |
Fixes piglit lodbias | |||
2010-09-03 | nvfx: remove message | Luca Barbieri | |
2010-09-03 | nvfx: support indirect addressing in vps | Luca Barbieri | |
Negative or huge offsets not yet supported. | |||
2010-09-03 | nvfx: fix support for more than 8 texture units (fixes etqw crash) | Luca Barbieri | |
2010-09-01 | nouveau/nvfx: Remove enforcement of bit depth being same as front buffer | Patrice Mandin | |
Signed-off-by: Patrice Mandin <patmandin@gmail.com> | |||
2010-08-28 | nvfx: Remove util_is_pot in favor of util_is_power_of_two. | Vinson Lee | |
This is a follow up to commit 89b2897220acfacdc431f138377fbcec9f0ea812. | |||
2010-08-25 | nvfx: Set pointer to NULL after free. | Vinson Lee | |
Guard against potential use after free. |