Index: /trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_texture.c
===================================================================
--- /trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_texture.c	(revision 45487)
+++ /trunk/src/VBox/GuestHost/OpenGL/state_tracker/state_texture.c	(revision 45488)
@@ -895,6 +895,15 @@
     if (!tobj)
     {
-        crWarning("crStateSetTextureUsed: failed to fined a HW name for texture(%d)!", texture);
-        return;
+#ifdef IN_GUEST
+        if (used)
+        {
+            tobj = crStateTextureAllocate_t(g, texture);
+        }
+        else
+#endif
+        {
+            crWarning("crStateSetTextureUsed: failed to fined a HW name for texture(%d)!", texture);
+            return;
+        }
     }
 
