OSDN Git Service

slang: Fix signed/unsigned int handling in _slang_free_temp().
authorMichal Krol <michal@vmware.com>
Tue, 10 Nov 2009 02:25:06 +0000 (03:25 +0100)
committerMichal Krol <michal@vmware.com>
Tue, 10 Nov 2009 02:25:06 +0000 (03:25 +0100)
src/mesa/shader/slang/slang_vartable.c

index a4ebacc..e07e3a2 100644 (file)
@@ -311,10 +311,10 @@ _slang_free_temp(slang_var_table *vt, slang_ir_storage *store)
 {
    struct table *t = vt->Top;
    GLuint i;
-   GLuint r = store->Index;
+   GLint r = store->Index;
    assert(store->Size > 0);
    assert(r >= 0);
-   assert(r + store->Size <= vt->MaxRegisters * 4);
+   assert((GLuint)r + store->Size <= vt->MaxRegisters * 4);
    if (dbg) printf("Free temp sz %d at %d.%s (level %d) store %p\n",
                    store->Size, r,
                    _mesa_swizzle_string(store->Swizzle, 0, 0),