Merge branch '965-glsl'
authorZou Nan hai <nanhai.zou@intel.com>
Fri, 26 Oct 2007 07:39:50 +0000 (15:39 +0800)
committerZou Nan hai <nanhai.zou@intel.com>
Fri, 26 Oct 2007 07:39:50 +0000 (15:39 +0800)
Conflicts:

src/mesa/drivers/dri/i965/brw_sf.h
src/mesa/drivers/dri/i965/intel_context.c

14 files changed:
1  2 
src/mesa/drivers/dri/i965/Makefile
src/mesa/drivers/dri/i965/brw_context.c
src/mesa/drivers/dri/i965/brw_sf.h
src/mesa/drivers/dri/i965/brw_vs.h
src/mesa/drivers/dri/i965/brw_vs_emit.c
src/mesa/drivers/dri/i965/brw_vs_tnl.c
src/mesa/drivers/dri/i965/brw_wm.c
src/mesa/drivers/dri/i965/brw_wm.h
src/mesa/drivers/dri/i965/brw_wm_fp.c
src/mesa/drivers/dri/i965/brw_wm_state.c
src/mesa/drivers/dri/i965/intel_context.c
src/mesa/main/texenvprogram.c
src/mesa/shader/program.c
src/mesa/shader/slang/slang_codegen.c

Simple merge
@@@ -48,16 -49,10 +49,15 @@@ struct brw_sf_prog_key 
     GLuint primitive:2;
     GLuint do_twoside_color:1;
     GLuint do_flat_shading:1;
-    GLuint attrs:16;
     GLuint frontface_ccw:1;
 -   GLuint pad:27;
 +   GLuint do_point_sprite:1;
 +   GLuint pad:10;
 +   GLenum SpriteOrigin;
  };
  
 +struct brw_sf_point_tex {
 +      GLboolean CoordReplace; 
 +};
  
  struct brw_sf_compile {
     struct brw_compile func;
Simple merge
Simple merge
Simple merge
Simple merge
@@@ -83,7 -81,11 +83,12 @@@ int INTEL_DEBUG = (0)
  #define need_GL_EXT_fog_coord
  #define need_GL_EXT_multi_draw_arrays
  #define need_GL_EXT_secondary_color
 +#define need_GL_EXT_point_parameters
+ #define need_GL_VERSION_2_0
+ #define need_GL_VERSION_2_1
+ #define need_GL_ARB_shader_objects
+ #define need_GL_ARB_vertex_shader
  #include "extension_helper.h"
  
  #ifndef VERBOSE
Simple merge
Simple merge
Simple merge