~mmach/netext73/mesa-ryzen

« back to all changes in this revision

Viewing changes to src/gallium/auxiliary/postprocess/pp_mlaa.c

  • Committer: mmach
  • Date: 2023-11-02 21:31:35 UTC
  • Revision ID: netbit73@gmail.com-20231102213135-18d4tzh7tj0uz752
2023-11-02 22:11:57

Show diffs side-by-side

added added

removed removed

Lines of Context:
38
38
 * policies, either expressed or implied, of the copyright holders.
39
39
 */
40
40
 
41
 
#include "pipe/p_compiler.h"
 
41
#include "util/compiler.h"
42
42
 
43
43
#include "postprocess/postprocess.h"
44
44
#include "postprocess/pp_mlaa.h"
229
229
 
230
230
   if (!tmp_text) {
231
231
      pp_debug("Failed to allocate shader space\n");
232
 
      return FALSE;
 
232
      return false;
233
233
   }
234
234
 
235
235
   pp_debug("mlaa: using %u max search steps\n", val);
279
279
 
280
280
   FREE(tmp_text);
281
281
 
282
 
   return TRUE;
 
282
   return true;
283
283
 
284
284
 fail:
285
285
   
291
291
    */
292
292
   pp_jimenezmlaa_free(ppq, n);
293
293
 
294
 
   return FALSE;
 
294
   return false;
295
295
}
296
296
 
297
297
/** Short wrapper to init the depth version. */