Re: [Mesa-dev] [PATCH 10/14] i965/fs: Use gl_program* rather than fp->Base

2014-09-02 Thread Kenneth Graunke
On Monday, September 01, 2014 09:44:34 AM Jordan Justen wrote: > Reduce brw_fs_precompile's dependence on gl_fragment_program. The thing is, virtually all of the fields here are fragment program specific, and not going to be useful for compute. So, I'm not sure whether this is really useful. Y

[Mesa-dev] [PATCH 10/14] i965/fs: Use gl_program* rather than fp->Base

2014-09-01 Thread Jordan Justen
Reduce brw_fs_precompile's dependence on gl_fragment_program. Signed-off-by: Jordan Justen --- src/mesa/drivers/dri/i965/brw_fs.cpp | 17 + 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp i