summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/i965/brw_fs.cpp
diff options
context:
space:
mode:
authorFrancisco Jerez <currojerez@riseup.net>2016-09-07 17:00:58 -0700
committerFrancisco Jerez <currojerez@riseup.net>2016-09-14 14:50:56 -0700
commitbae3a411712d815bf8b8d4526c72c174512086d3 (patch)
treeb8281efa9a24afb90b5ce7aeff72f2fda91bf82d /src/mesa/drivers/dri/i965/brw_fs.cpp
parenta384503c156e182560104e6c43a6bf0c64608791 (diff)
downloadexternal_mesa3d-bae3a411712d815bf8b8d4526c72c174512086d3.zip
external_mesa3d-bae3a411712d815bf8b8d4526c72c174512086d3.tar.gz
external_mesa3d-bae3a411712d815bf8b8d4526c72c174512086d3.tar.bz2
i965/fs: Fix signedness of the return value of fs_inst::size_read().
Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Diffstat (limited to 'src/mesa/drivers/dri/i965/brw_fs.cpp')
-rw-r--r--src/mesa/drivers/dri/i965/brw_fs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/i965/brw_fs.cpp b/src/mesa/drivers/dri/i965/brw_fs.cpp
index e40a7d4..4c38b18 100644
--- a/src/mesa/drivers/dri/i965/brw_fs.cpp
+++ b/src/mesa/drivers/dri/i965/brw_fs.cpp
@@ -811,7 +811,7 @@ fs_inst::components_read(unsigned i) const
}
}
-int
+unsigned
fs_inst::size_read(int arg) const
{
switch (opcode) {