Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | mesa: fix error string, remove out of date comment | Brian Paul | 2011-04-29 | 1 | -12/+1 |
| | |||||
* | mesa: remove commented-out #include | Brian Paul | 2011-04-29 | 1 | -1/+0 |
| | |||||
* | mesa: fix a few incorrect error messages | Brian Paul | 2011-04-29 | 1 | -2/+2 |
| | |||||
* | mesa: Directly include mfeatures.h in files that perform feature tests. | Vinson Lee | 2011-01-07 | 1 | -0/+1 |
| | |||||
* | mesa: Include mtypes.h in files that use gl_context struct. | Vinson Lee | 2011-01-05 | 1 | -0/+1 |
| | | | | | | Directly include mtypes.h if a file uses a gl_context struct. This allows future removal of headers that are not strictly necessary but indirectly include mtypes.h for a file. | ||||
* | Drop GLcontext typedef and use struct gl_context instead | Kristian Høgsberg | 2010-10-13 | 1 | -18/+18 |
| | |||||
* | mesa: fix some printf warnings with casts | Brian Paul | 2010-09-02 | 1 | -3/+3 |
| | |||||
* | mesa: Fix many printf-like warnings. | Eric Anholt | 2010-09-01 | 1 | -1/+2 |
| | | | | | | | | Most of these are just typecasting to long to match the arg type. I don't really care too much about getting a GLsizei or whatever appropriate type in. However, there were a number of real bugs, like missing arguments or passing floats to integer format specifiers. My favorite: printflike("%s, argument") is missing an argument. | ||||
* | mesa: Always initialize transform feedback state. | Chia-I Wu | 2010-07-06 | 1 | -8/+42 |
| | | | | | | Assert ctx->Driver.NewTransformFeedback if the feature is enabled; Use the default callbacks otherwise. The rest of core mesa expects the state to be initialized. | ||||
* | mesa: free xform feedback hash table | Brian Paul | 2010-07-01 | 1 | -0/+1 |
| | |||||
* | mesa: rename src/mesa/shader/ to src/mesa/program/ | Brian Paul | 2010-06-10 | 1 | -2/+2 |
| | |||||
* | mesa: refactor shader api / object code | Brian Paul | 2010-06-10 | 1 | -1/+3 |
| | | | | | Remove the unneeded ctx->Driver hooks for shader-related functions. Move state and API-related things into main/. | ||||
* | mesa: another transform feedback error check, 80-col wrapping | Brian Paul | 2010-05-14 | 1 | -3/+9 |
| | |||||
* | mesa: Make FEATURE_EXT_transform_feedback more modular. | Chia-I Wu | 2010-05-12 | 1 | -0/+19 |
| | | | | | | This allows transformfeedback.h and st_cb_xformfb.h to be included and used without knowing if FEATURE_EXT_transform_feedback is enabled. Fix build of ES overlay. | ||||
* | mesa: s/uint/GLuint/ in _mesa_BindTransformFeedback prototype. | Vinson Lee | 2010-05-10 | 1 | -1/+1 |
| | | | | | | | From http://www.opengl.org/registry/api/glext.h GLAPI void APIENTRY glBindTransformFeedback (GLenum target, GLuint id); Fixes MinGW build. | ||||
* | mesa: more transform feedback infrastructure | Brian Paul | 2010-05-10 | 1 | -14/+460 |
| | | | | | Includes GL_ARB_transform_feedback2 which encapsulates transform feedback state in objects. | ||||
* | mesa: minor fixes in _mesa_GetTransformFeedbackVarying() | Brian Paul | 2010-04-01 | 1 | -1/+10 |
| | |||||
* | mesa: Remove unnecessary header. | Vinson Lee | 2010-03-31 | 1 | -1/+0 |
| | |||||
* | mesa: initial check-in of transform feedback functions | Brian Paul | 2010-03-30 | 1 | -0/+427 |