diff options
author | Mathias Fröhlich <[email protected]> | 2010-05-17 11:48:56 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2010-05-17 12:05:18 -0700 |
commit | cdbd5f4203391ee7eb12911bc86fea34dc61c957 (patch) | |
tree | d0a787749ab03816bd140f08bf63d5ebdd352814 /src/gallium/drivers/cell | |
parent | fea91ee22d468bf2b66aaba9e7b509d30914a110 (diff) |
gallium: EXT_timer_query support.
Signed-off-by: Corbin Simpson <[email protected]>
Diffstat (limited to 'src/gallium/drivers/cell')
-rw-r--r-- | src/gallium/drivers/cell/ppu/cell_screen.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gallium/drivers/cell/ppu/cell_screen.c b/src/gallium/drivers/cell/ppu/cell_screen.c index 5af4eaa88b1..750f0aa98ab 100644 --- a/src/gallium/drivers/cell/ppu/cell_screen.c +++ b/src/gallium/drivers/cell/ppu/cell_screen.c @@ -76,6 +76,8 @@ cell_get_param(struct pipe_screen *screen, enum pipe_cap param) return 1; case PIPE_CAP_OCCLUSION_QUERY: return 1; + case PIPE_CAP_TIMER_QUERY: + return 0; case PIPE_CAP_TEXTURE_SHADOW_MAP: return 10; case PIPE_CAP_MAX_TEXTURE_2D_LEVELS: |