From: Brian Date: Fri, 5 Jan 2007 23:01:11 +0000 (-0700) Subject: added PROGRAM_SAMPLER X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=288c5396e6aa484d88819bd28a7cd49a3873f283;p=mesa.git added PROGRAM_SAMPLER --- diff --git a/src/mesa/main/mtypes.h b/src/mesa/main/mtypes.h index 5156eea99a2..f43113a0af4 100644 --- a/src/mesa/main/mtypes.h +++ b/src/mesa/main/mtypes.h @@ -1827,7 +1827,8 @@ enum register_file PROGRAM_VARYING = 9, /**< machine->Inputs[]/Outputs[] */ PROGRAM_WRITE_ONLY = 10, /**< A dummy, write-only register */ PROGRAM_ADDRESS = 11, /**< machine->AddressReg */ - PROGRAM_UNDEFINED = 12, /**< Invalid value */ + PROGRAM_SAMPLER = 12, /**< for shader samplers, compile-time only */ + PROGRAM_UNDEFINED = 13, /**< Invalid value */ PROGRAM_FILE_MAX };