diff options
author | Brian Paul <[email protected]> | 2010-06-10 20:23:03 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-06-10 20:32:57 -0600 |
commit | a37b2219d6e3f299379c6434d65f300660d12c3e (patch) | |
tree | 7e3000d9f93531979452d168d542e00ebf66e6e7 /src/mesa/main/context.c | |
parent | 050eed095a3f7eaeada1e292f92f2b549d74963f (diff) |
mesa: refactor shader api / object code
Remove the unneeded ctx->Driver hooks for shader-related functions.
Move state and API-related things into main/.
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index e140a21b354..5b79e687690 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -118,6 +118,7 @@ #include "remap.h" #include "scissor.h" #include "shared.h" +#include "shaderobj.h" #include "simple_list.h" #include "state.h" #include "stencil.h" @@ -131,7 +132,6 @@ #include "vtxfmt.h" #include "shader/program.h" #include "shader/prog_print.h" -#include "shader/shader_api.h" #if _HAVE_FULL_GL #include "math/m_matrix.h" #endif |