width, height);
}
else {
- /* TODO Alloc a BO */
uint32_t size = width * height * cpp;
+ uint32_t pitch = ((cpp * width + 63) & ~63) / cpp;
- rrb->pitch = width * cpp;
+ fprintf(stderr,"Allocating %d x %d radeon RBO (pitch %d)\n", width,
+ height, pitch);
+
+ rrb->pitch = pitch * cpp;
rrb->cpp = cpp;
rrb->bo = radeon_bo_open(radeon->radeonScreen->bom,
0,
0,
RADEON_GEM_DOMAIN_VRAM,
0);
- // rrb->bo = radeon_bo_open();
rb->Width = width;
rb->Height = height;
return GL_TRUE;