Re: [Mesa-dev] [PATCH V2 06/22] glsl: add support for ARB_texture_multisample

2013-02-05 Thread Eric Anholt
diff --git a/src/glsl/builtins/tools/texture_builtins.py b/src/glsl/builtins/tools/texture_builtins.py index 654eb06..37fb749 100755 --- a/src/glsl/builtins/tools/texture_builtins.py +++ b/src/glsl/builtins/tools/texture_builtins.py @@ -57,6 +57,12 @@ def get_txs_dim(sampler_type):

[Mesa-dev] [PATCH V2 06/22] glsl: add support for ARB_texture_multisample

2013-02-04 Thread Chris Forbes
V2: - emit `sample` parameter properly for multisample texelFetch() V3: - fix spurious whitespace change - introduce a new opcode ir_txf_ms rather than overloading the existing ir_txf further. This makes doing the right thing in the driver somewhat simpler. Signed-off-by: Chris