Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-11-06 | Convert format bitfields to shifts and masks. | Michel Dänzer | |
The memory layout of bitfields depends on the ABI. | |||
2007-11-05 | Determine GL extensions/limits by making pipe queries. | Brian | |
The state tracker calls pipe->get_param() to determine the GL limits and which OpenGL extensions are supported. This is an initial implementation that'll probably change... | |||
2007-11-05 | don't include mtypes.h in st_public.h | Brian | |
2007-11-05 | move st_invalidate_state() prototype to st_context.h | Brian | |
2007-11-05 | Remove some temporary state tracker context/framebuffer_create functions. | Brian | |
2007-11-05 | Update xlib driver to use newer state tracker context/framebuffer functions. | Brian | |
XMesaContext has an st_context * which contains a mesa context. | |||
2007-11-05 | added st_notify_swapbuffers() | Brian | |
2007-11-05 | added st_get_framebuffer_surface() and ST_SURFACE_x tokens | Brian | |
2007-11-05 | comments, tweaks | Brian | |
2007-11-05 | added st_unreference_framebuffer() | Brian | |
2007-11-05 | set stfb->Base.Initialized | Brian | |
2007-11-05 | added st_resize_framebuffer() | Brian | |
2007-11-05 | st_create_framebuffer() working | Brian | |
2007-11-05 | move st_create_framebuffer() to new st_framebuffer.c file | Brian | |
2007-11-05 | new file for st_framebuffer stuff | Brian | |
2007-11-05 | Introduce st_framebuffer type and st_create_framebuffer(), st_make_current() | Brian | |
2007-11-05 | added check for fb==NULL | Brian | |
2007-11-05 | include context.h | Brian | |
2007-11-05 | call FLUSH_VERTICES() in st_flush() | Brian | |
2007-11-05 | public st_flush() | Brian | |
2007-11-04 | Check if the user/texenvprogram is just a pass-through program and skip ↵ | Brian | |
program concatenation. | |||
2007-11-02 | Renaming llvmtgsi to gallivm. Taking first steps on the way to supporting | Zack Rusin | |
fragment shaders through llvm. | |||
2007-11-01 | Start re-working SwapBuffers. | Brian | |
intelCopyBuffer() is now intelDisplayBuffer(): it displays the given surface in the on-screen window. Added a pipe_surface parameter to winsys->flush_frontbuffer(). Front buffer rendering/flushing actually works now. But, we should only allocate the front surface on demand... | |||
2007-11-01 | Sketch out new create/destroy context functions which create/wrap a Mesa ↵ | Brian | |
context. | |||
2007-11-01 | silence the finalize_mipmap_tree msg | Brian | |
2007-11-01 | plug in _mesa_test_proxy_teximage, temporarily | Brian | |
2007-11-01 | remove dead code | Brian | |
2007-11-01 | remove unneeded tnl stuff | Brian | |
2007-10-31 | No longer need st_update_tnl atom | Brian | |
2007-10-31 | Use ffvertex_prog.c code instead of t_vp_build.c code. | Brian | |
2007-10-31 | Lift VBO/tnl stuff up out of drivers | Brian | |
2007-10-31 | plug st_invalidate_state() into ctx->Driver.UpdateState | Brian | |
Start lifting Mesa stuff up out of winsys/driver code. | |||
2007-10-30 | Implement shader concatenation for glBitmap. | Brian | |
2007-10-30 | combine shaders for glCopyPixels | Brian | |
2007-10-30 | Use program serial numbers to avoid re-generating fragment programs for ↵ | Brian | |
glDrawPixels. | |||
2007-10-30 | Before calling texformat->StoreImage() set _ImageTransferState=0 since we'll ↵ | Brian | |
do pixel transfer in the fragment program. | |||
2007-10-30 | color matrix | Brian | |
2007-10-30 | start using program cache | Brian | |
2007-10-30 | added pixel_transfer_cache | Brian | |
2007-10-30 | tgsi_translate_mesa_program: Don't crash when program->Parameters == NULL. | Michel Dänzer | |
2007-10-30 | Disable debug code. | Brian | |
Basic code for PixelTranslfer ops and glDrawPixels works now. A pixel transfer program is generated and combined with the current fragment shader. | |||
2007-10-30 | Remove obsolete files | Brian | |
2007-10-30 | Rename file since it's now a state atom | Brian | |
2007-10-30 | checkpoint: combine pixel transfer and user shader for glDrawPixels | Brian | |
2007-10-30 | make st_upload_constants() public | Brian | |
2007-10-30 | added pixel_transfer_program field | Brian | |
2007-10-30 | added st_update_pixel_transfer atom | Brian | |
2007-10-30 | bug fixes, implement state atom for pixel transfer | Brian | |
2007-10-30 | Set _NEW_BUFFERS in glRead/DrawBuffer(). | Brian | |
Previously, we set _NEW_PIXEL and _NEW_COLOR in these functions, respectively. That correponds to the GL attribute groups, but doesn't make much sense otherwise. This could improve validation efficiency in a few places too. It looks like all the drivers are already checking for _NEW_BUFFERS in the right places (since that's the bit for FBO state) so we can trim out _NEW_PIXEL and _NEW_COLOR at any time. | |||
2007-10-30 | comment unused 'cb' field | Brian | |