Re: [PATCH] drm/radeon/kms: fix r100->r500 CS checker for compressed textures. (v2)

2009-12-14 Thread Maciej Cencora
Reviewed-by: Maciej Cencora Dnia poniedziałek, 14 grudnia 2009 o 03:26:31 Dave Airlie napisał(a): > From: Dave Airlie > > This adds support for compressed textures to the r100->r500 CS > checker, it lets me run openarena and the demos in mesa fine. > > Thanks to Macie

Re: [PATCH] drm/radeon/kms: fix r100->r500 CS checker for compressed textures.

2009-12-07 Thread Maciej Cencora
The calculations are wrong. E.g. for image 16 x 16, format is DXT3 (block size = 16 bytes, block width = 4, block height = 4) the size is 256. Yours code would calculate it as 16 * (16 / 4) = 64. The proper way to calculate it is unsigned wblocks = (width + blockWidth - 1) / blockWidth; unsigne

Re: UPDATED: drm/mesa patches for getting num Z pipes from drm for rv530

2009-08-20 Thread Maciej Cencora
2009/8/20 Alex Deucher : > Previous drm patches had some problems.  Untested. > > Alex > > -- > Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day > trial. Simplify your report design, integration a

radeon drm patch

2009-04-03 Thread Maciej Cencora
Hi, here's simple patch that fixes offset checking for R300_ZB_ZPASS_ADDR reg writes. Maciej Cencora From 9f07360c523bb942d5b9e8dae15752eefa227c73 Mon Sep 17 00:00:00 2001 From: Maciej Cencora Date: Thu, 2 Apr 2009 15:09:36 +0200 Subject: [PATCH] drm/radeon: check offset

drm radeon patch

2009-03-23 Thread Maciej Cencora
Hi, this simple patch adds regs required for implementing occlusion queries support. I also changed R500_SU_REG_DEST to R300_* as it exists on R300 cards too. Maciej Cencora From 47b6fab19665a823a89c90e4987e1a0b281f658b Mon Sep 17 00:00:00 2001 From: Maciej Cencora Date: Tue, 24 Mar 2009 01