nvc0: validate GP samplers, textures
authorChristoph Bumiller <e0425955@student.tuwien.ac.at>
Fri, 14 Oct 2011 20:16:48 +0000 (22:16 +0200)
committerChristoph Bumiller <e0425955@student.tuwien.ac.at>
Fri, 21 Oct 2011 21:00:39 +0000 (23:00 +0200)
src/gallium/drivers/nvc0/nvc0_tex.c

index 668756a6d2c61d9c840cb16696aea3078ff8a66f..143363f9e7f4962d9e8b453edbe76f1110ea6e71 100644 (file)
@@ -252,6 +252,7 @@ void nvc0_validate_textures(struct nvc0_context *nvc0)
    boolean need_flush;
 
    need_flush  = nvc0_validate_tic(nvc0, 0);
+   need_flush |= nvc0_validate_tic(nvc0, 3);
    need_flush |= nvc0_validate_tic(nvc0, 4);
 
    if (need_flush) {
@@ -302,6 +303,7 @@ void nvc0_validate_samplers(struct nvc0_context *nvc0)
    boolean need_flush;
 
    need_flush  = nvc0_validate_tsc(nvc0, 0);
+   need_flush |= nvc0_validate_tsc(nvc0, 3);
    need_flush |= nvc0_validate_tsc(nvc0, 4);
 
    if (need_flush) {