util: reference surfaces and sampler views in blitter when saving them
[mesa.git] / src / gallium / drivers / llvmpipe / lp_state_surface.c
index 7d86c5750c5e7e22d4e0b303235a8947bcd17631..4b135aaf8ba575126c3eb8c607b9f57efcdf01c2 100644 (file)
@@ -30,6 +30,7 @@
 
 #include "pipe/p_state.h"
 #include "util/u_inlines.h"
+#include "util/u_framebuffer.h"
 #include "util/u_surface.h"
 #include "lp_context.h"
 #include "lp_scene.h"
@@ -52,8 +53,8 @@ llvmpipe_set_framebuffer_state(struct pipe_context *pipe,
 
    boolean changed = !util_framebuffer_state_equal(&lp->framebuffer, fb);
 
-   assert(fb->width <= MAXWIDTH);
-   assert(fb->height <= MAXHEIGHT);
+   assert(fb->width <= LP_MAX_WIDTH);
+   assert(fb->height <= LP_MAX_HEIGHT);
 
    if (changed) {