search for: nv50_query_alloc_spac

Displaying 3 results from an estimated 3 matches for "nv50_query_alloc_spac".

Did you mean: nv50_query_alloc_space
2014 Oct 27
0
[PATCH] nv50: Fix allocation size for querys
...1,14 +41,14 @@ struct nv50_query { uint32_t sequence; struct nouveau_bo *bo; uint32_t base; - uint32_t offset; /* base + i * 16 */ + uint32_t offset; /* base + i * 32 */ boolean ready; boolean flushed; boolean is64bit; struct nouveau_mm_allocation *mm; }; -#define NV50_QUERY_ALLOC_SPACE 128 +#define NV50_QUERY_ALLOC_SPACE 256 static INLINE struct nv50_query * nv50_query(struct pipe_query *pipe) @@ -116,8 +116,8 @@ nv50_query_create(struct pipe_context *pipe, unsigned type, unsigned index) q->type = type; if (q->type == PIPE_QUERY_OCCLUSION_COUNTER) { - q-...
2015 Mar 19
7
[Bug 89679] New: [NV50] Portal/Half-Life 2 will not start (native Steam)
https://bugs.freedesktop.org/show_bug.cgi?id=89679 Bug ID: 89679 Summary: [NV50] Portal/Half-Life 2 will not start (native Steam) Product: Mesa Version: git Hardware: x86-64 (AMD64) OS: Linux (All) Status: NEW Severity: normal Priority: medium Component:
2015 Jun 22
12
[RFC PATCH 0/8] nv50: expose global performance counters
Hello there, This series exposes NVIDIA's global performance counters for Tesla through the Gallium's HUD and the GL_AMD_performance_monitor extension. This adds support for 24 hardware events which have been reverse engineered with PerfKit (Windows) and CUPTI (Linux). These hardware events will allow developers to profile OpenGL applications. To reduce latency and to improve accuracy,