Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-10-11 | Drop no longer implemented MESA allocate extension from i915. | Kristian Høgsberg | |
2007-10-11 | Add a version field to __DRIextension. | Kristian Høgsberg | |
2007-10-11 | Add a DRI_ReadDrawable marker extension to signal read drawable capability. | Kristian Høgsberg | |
2007-10-11 | Move media stream counter entry points to new extension. | Kristian Høgsberg | |
2007-10-11 | Move GLX_MESA_swap_frame_usage DRI entry points to the new mechanism. | Kristian Høgsberg | |
2007-10-11 | Move GLX_MESA_allocate_memory related functions to new extension mechanism. | Kristian Høgsberg | |
2007-10-10 | Move swap_interval to new extension mechanism. | Kristian Høgsberg | |
2007-10-10 | Move the copySubBuffer extension over to the new mechanism. | Kristian Høgsberg | |
2007-10-10 | Pull createNewScreen entry point into dri_util.c. | Kristian Høgsberg | |
This pulls the top level createNewScreen entry point out of the drivers and rewrites __driUtilCreateNewScreen in dri_util.c to be the new entry point. The change moves more logic into the common/ layer and changes the createNewScreen entry point to only be defined in one place. | |||
2007-10-10 | Replace open-coded major, minor, and patch version fields with __DRIversionRec. | Kristian Høgsberg | |
2007-10-10 | Remove screenConfigs from __DRIscreen. | Kristian Høgsberg | |
The screenConfigs field of __DRIscreen points back to the containing __GLXscreenConfigs struct. This is a serious abstraction violation; it assumes that the loader is libGL and that there *is* a __GLXscreenConfigs type in the loader. Using the containerOf macro, we can get from the __DRIscreen pointer to the containing __GLXscreenConfigs struct, at a place in the stack where the above is a valid assumption. Besides, the __DRI* structs shouldn't hold state other than the private pointer. | |||
2007-10-10 | Key drm_i915_flip_t typedef off of the ioctl #define instead. | Kristian Høgsberg | |
2007-10-10 | Drop __DRInativeDisplay and pass in __DRIscreen pointers instead. | Kristian Høgsberg | |
Many DRI entry points took a __DRInativeDisplay pointer and a screen index as arguments. The only use for the native display pointer was to pass it back to the loader when looking up the __DRIscreen for the given screen index. Instead, let's just pass in the __DRIscreen pointer directly, which let's drop the __DRInativeDisplay type and the getScreen function. The assumption is now that the loader will be able to retrieve context from the __DRIscreen pointer when necessary. | |||
2007-10-04 | [965] Replace various alignment code with a shared ALIGN() macro. | Eric Anholt | |
In the process, fix some alignment issues: - Scratch space allocation was aligned into units of 1KB, while the allocation wanted units of bytes, so we never allocated enough space for scratch. - GRF register count was programmed as ALIGN(val - 1, 16) / 16 instead of ALIGN(val, 16) / 16 - 1, which overcounted for val != 16n+1. | |||
2007-10-04 | Replace duplicated intel_reg.h with a shared header. | Eric Anholt | |
2007-10-03 | i915: Only align texture pitch to 64 bytes when textures can be render targets. | Michel Dänzer | |
2007-10-03 | i915: Work around texture pitch related performance drops on i915 at least. | Michel Dänzer | |
2007-09-28 | Go back to using old drm_i915_flip_t field name | Jesse Barnes | |
This field shouldn't have been renamed in the first place. Go back to using the old name so that the tree is backward and forward compatible again. | |||
2007-09-27 | [965] Add batchbuffer dumping under INTEL_DEBUG=bat, like 915. | Eric Anholt | |
2007-09-27 | Revert "WIP 965 conversion to dri_bufmgr." | Eric Anholt | |
This reverts commit b2f1aa2389473ed09170713301b042661d70a48e. Somehow I ended up with my branch's save-this-while-I-work-on-master commit actually on master. | |||
2007-09-27 | WIP 965 conversion to dri_bufmgr. | Eric Anholt | |
2007-09-27 | i915/i965 merge serer directories along lines for radeon/r200 | Dave Airlie | |
2007-09-24 | Remove leftover code for i915_texprog.c noticed in crossbar review. | Eric Anholt | |
2007-09-24 | Move i915tex driver into place as just i915. | Eric Anholt | |
2007-09-24 | Remove the old i915 driver now that i915tex works without TTM. | Eric Anholt | |
2007-09-19 | i915: Quiet valgrind by initializing the seq value the kernel writes into. | Eric Anholt | |
Also, add a couple of comments to the wait/emit IRQ functions. | |||
2007-09-12 | Remove unused plane->pipe mapping fields from SAREA private. | Jesse Barnes | |
2007-09-11 | Fix-up #includes to remove some -I options. | Brian | |
eg: #include "shader/program.h" and remove -I$(TOP)/src/mesa/program | |||
2007-09-11 | intel: disentangle planes & pipes | Jesse Barnes | |
This is the Mesa portion of the pipe & plane disambiguation. Mesa needs to use the new assumptions about plane vs. pipe mappings and should use the new SAREA field names to avoid confusion. | |||
2007-08-13 | i915: satisfy certain alignment restrictions for small | Xiang, Haihao | |
compressed texture | |||
2007-07-29 | fix cos/sin range reduction for i915 driver too | Roland Scheidegger | |
2007-07-29 | fix fallback crashes when driver can't handle frag prog for i915 driver too ↵ | Roland Scheidegger | |
(untested) | |||
2007-07-16 | fix segfault with i915 drivers in swrast drawpixels path when resizing windows | Roland Scheidegger | |
2007-07-06 | Add case for GL_QUADS in i915_reduced_primitive_state(). | Brian | |
The t_dd_tritemp.h code can emit GL_QUADS primitives. We need to catch that case to determine if polygon stipple should be enabled. Fixes bug reported by Carlos Diógenes on 4 July 2007. | |||
2007-06-21 | Another round of fixing attribute interpolation for glDraw/CopyPixels. | Brian | |
Need to turn off FRAG_BIT_COL0 in swrast->_ActiveAttribMask when doing glRead/CopyPixels to prevent the user's colors from getting overwritten when a fragment program is active. This was happening in the DRI drivers when MaintainTexEnv program was used (the texenv fragment program was enabled when _swrast_DrawPixels was called). This still isn't an ideal solution, but fixes things for now. | |||
2007-06-20 | Effectively disable _TexEnvProgram before calling _swrast_DrawPixels(). | Brian | |
It's OK to use _TexEnvProgram regardless of the texture state, but if fog is also enabled, the fragment program is lacking the actual fog computation so fogging doesn't appear. Fixing this might involve a new _MaintainFogProgram field and related code. For now, just disable the _TexEnvProgram and let swrast handle everything. | |||
2007-06-05 | Add PCI IDs for the G33, Q33, and Q35 chipsets. | Wang Zhenyu | |
2007-05-31 | i915: Add support for 945GME chip | Wang Zhenyu | |
2007-05-22 | Replace initInitState() with _mesa_init_driver_state(). | Brian | |
2007-05-22 | i915/i915tex: minor cleanup (remove unneeded function call | Roland Scheidegger | |
2007-05-19 | fix copy & paste bug of previous commit, breaking dxt5 formats | Roland Scheidegger | |
2007-05-19 | fix small s3tc mipmaps (#10968) | Roland Scheidegger | |
make sure that always whole blocks are uploaded. (May still not work correctly if the top mip map is not at least a full block, that is 4 pixels wide - not sure, but probably doesn't happen in real world) | |||
2007-05-09 | Clean-up in I830AllocVidMem(), s/int/unsigned long/ for ret variable. | Brian | |
2007-04-16 | just clean-ups | Brian | |
2007-04-16 | remove _tnl_arb_vertex_program_stage | Brian | |
2007-04-10 | i915: Bring test for vsync to pipe B in line with i915tex. | Michel Dänzer | |
2007-04-05 | include points.h to fix warnings | Brian | |
2007-04-04 | i810/i915/i915tex: reinitialize the context point state | Xiang, Haihao | |
2007-03-27 | Restore the UseTexEnvProgram logic. | Brian | |
Was removed during glsl-compiler work. Still need to go back and revisit this because of the interaction with fragment shaders... | |||
2007-03-21 | merge from master | Brian | |