diff options
author | Samuel Iglesias Gonsálvez <[email protected]> | 2016-07-07 08:38:22 +0200 |
---|---|---|
committer | Samuel Iglesias Gonsálvez <[email protected]> | 2016-07-14 08:06:01 +0200 |
commit | 6e28976d35cf0a15c62bed1fd2ceeb734a3fc81e (patch) | |
tree | fff0cba2eba0fc6804775549658ca350abfaffec /src/mesa/drivers/dri/i965/brw_eu.c | |
parent | b9e99282a6e1b3b2b01645e37bf4b735aace677b (diff) |
i965: enable the emission of the DIM instruction
v2 (Matt):
- Take a DF source argument for the DIM instruction emission
in the visitors.
- Indentation.
Signed-off-by: Samuel Iglesias Gonsálvez <[email protected]>
Reviewed-by: Matt Turner <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_eu.c')
-rw-r--r-- | src/mesa/drivers/dri/i965/brw_eu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_eu.c b/src/mesa/drivers/dri/i965/brw_eu.c index cc252de1cd6..3a309dce8fa 100644 --- a/src/mesa/drivers/dri/i965/brw_eu.c +++ b/src/mesa/drivers/dri/i965/brw_eu.c @@ -421,7 +421,7 @@ enum gen { #define GEN_LE(gen) (GEN_LT(gen) | (gen)) static const struct opcode_desc opcode_10_descs[] = { - { .name = "dim", .nsrc = 0, .ndst = 0, .gens = GEN75 }, + { .name = "dim", .nsrc = 1, .ndst = 1, .gens = GEN75 }, { .name = "smov", .nsrc = 0, .ndst = 0, .gens = GEN_GE(GEN8) }, }; |