Module: Mesa Branch: master Commit: 0d1f6c752f6c4c7c5c2ec6be569e4bdd33bef204 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=0d1f6c752f6c4c7c5c2ec6be569e4bdd33bef204
Author: Matt Turner <[email protected]> Date: Sat Feb 27 13:55:27 2016 -0800 program: Remove incorrect comment about OPCODE_TXD. The table in prog_instruction.h is correct. Reviewed-by: Kenneth Graunke <[email protected]> Reviewed-by: Ian Romanick <[email protected]> Acked-by: Brian Paul <[email protected]> --- src/mesa/program/prog_execute.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mesa/program/prog_execute.c b/src/mesa/program/prog_execute.c index 0755ac8..fec72ee 100644 --- a/src/mesa/program/prog_execute.c +++ b/src/mesa/program/prog_execute.c @@ -1203,7 +1203,7 @@ _mesa_execute_program(struct gl_context * ctx, store_vector4(inst, machine, color); } break; - case OPCODE_TXD: /* GL_NV_fragment_program only */ + case OPCODE_TXD: /* Texture lookup w/ partial derivatives for LOD */ { GLfloat texcoord[4], dtdx[4], dtdy[4], color[4]; _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
