[Mesa-dev] [PATCH mesa] swr: [rasterizer common] fix assert index

Rowley, Timothy O timothy.o.rowley at intel.com
Thu Oct 13 14:45:29 UTC 2016


Reviewed-by: Tim Rowley <timothy.o.rowley at intel.com<mailto:timothy.o.rowley at Intel.com>>

On Oct 12, 2016, at 4:13 PM, Eric Engestrom <eric at engestrom.ch<mailto:eric at engestrom.ch>> wrote:

Fixes: b3bd8bb611bb465d2e5e ("swr: [rasterizer core] add support
      for "RAW" surface format")
CovID: 1373647
Signed-off-by: Eric Engestrom <eric at engestrom.ch<mailto:eric at engestrom.ch>>
---
src/gallium/drivers/swr/rasterizer/common/formats.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/gallium/drivers/swr/rasterizer/common/formats.h b/src/gallium/drivers/swr/rasterizer/common/formats.h
index 539e37a..dd5b499 100644
--- a/src/gallium/drivers/swr/rasterizer/common/formats.h
+++ b/src/gallium/drivers/swr/rasterizer/common/formats.h
@@ -248,7 +248,7 @@ extern const SWR_FORMAT_INFO gFormatInfo[NUM_SWR_FORMATS];
/// @param format - SWR format
INLINE const SWR_FORMAT_INFO& GetFormatInfo(SWR_FORMAT format)
{
-    SWR_ASSERT(format <= NUM_SWR_FORMATS, "Invalid Surface Format: %d", format);
+    SWR_ASSERT(format < NUM_SWR_FORMATS, "Invalid Surface Format: %d", format);
    SWR_ASSERT(gFormatInfo[format].name != nullptr, "Invalid Surface Format: %d", format);
    return gFormatInfo[format];
}
--
Cheers,
 Eric


-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/mesa-dev/attachments/20161013/671171aa/attachment.html>


More information about the mesa-dev mailing list