summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAlyssa Rosenzweig <[email protected]>2020-04-27 17:55:54 -0400
committerMarge Bot <[email protected]>2020-04-29 15:18:38 +0000
commitd7f98a87f28ebecc87bb14d0d9b313530a10dcc1 (patch)
tree966438995d32f9ae0a8cef6cc7c7bcd776f5f71b /src
parent3b10bcd41743d0cff3460b1ca7b961d9cbe45b13 (diff)
pan/mdg: Remove goofy 16-bit comment
Signed-off-by: Alyssa Rosenzweig <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4792>
Diffstat (limited to 'src')
-rw-r--r--src/panfrost/midgard/midgard_compile.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/panfrost/midgard/midgard_compile.c b/src/panfrost/midgard/midgard_compile.c
index 3a9719d440b..c65ce2d97a0 100644
--- a/src/panfrost/midgard/midgard_compile.c
+++ b/src/panfrost/midgard/midgard_compile.c
@@ -173,20 +173,12 @@ vector_alu_modifiers(nir_alu_src *src, bool is_int, unsigned broadcast_count,
return alu_src;
}
-/* load/store instructions have both 32-bit and 16-bit variants, depending on
- * whether we are using vectors composed of highp or mediump. At the moment, we
- * don't support half-floats -- this requires changes in other parts of the
- * compiler -- therefore the 16-bit versions are commented out. */
-
-//M_LOAD(ld_attr_16);
M_LOAD(ld_attr_32);
-//M_LOAD(ld_vary_16);
M_LOAD(ld_vary_32);
M_LOAD(ld_ubo_int4);
M_LOAD(ld_int4);
M_STORE(st_int4);
M_LOAD(ld_color_buffer_32u);
-//M_STORE(st_vary_16);
M_STORE(st_vary_32);
M_LOAD(ld_cubemap_coords);
M_LOAD(ld_compute_id);