Displaying 5 results from an estimated 5 matches for "baselevel".
Did you mean:
baselabel
2012 Jun 11
1
[PATCH 10/21] nouveau: Add support for ARB_sampler_object
...static uint32_t
get_tex_format(struct gl_texture_image *ti)
@@ -67,6 +68,7 @@ nv04_emit_tex_obj(struct gl_context *ctx, int emit)
if (ctx->Texture.Unit[i]._ReallyEnabled) {
struct gl_texture_object *t = ctx->Texture.Unit[i]._Current;
struct gl_texture_image *ti = t->Image[0][t->BaseLevel];
+ const struct gl_sampler_object *sa = _mesa_get_samplerobj(ctx, i);
int lod_max = 1, lod_bias = 0;
if (!nouveau_texture_validate(ctx, t))
@@ -74,26 +76,26 @@ nv04_emit_tex_obj(struct gl_context *ctx, int emit)
s = &to_nouveau_texture(t)->surfaces[t->BaseLevel];
- if (t...
2009 Aug 25
3
[Bug 23505] New: KDE's Kubrick has problems with xf86-video-nouveau driver
http://bugs.freedesktop.org/show_bug.cgi?id=23505
Summary: KDE's Kubrick has problems with xf86-video-nouveau
driver
Product: Mesa
Version: git
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Drivers/DRI/nouveau
AssignedTo: nouveau at
2012 Apr 06
1
[WIP PATCH] dri/nouveau: Add S3TC support for nv20.
...ast = get_last_level(t);
- unsigned size, offset = 0,
+ unsigned size, pitch, layout, offset = 0,
width = s->width,
height = s->height;
@@ -368,7 +395,16 @@ relayout_texture(struct gl_context *ctx, struct gl_texture_object *t)
/* Relayout the mipmap tree. */
for (i = t->BaseLevel; i <= last; i++) {
- size = width * height * s->cpp;
+
+ if (_mesa_is_format_compressed(s->format)) {
+ layout = LINEAR;
+ pitch = _mesa_format_row_stride(s->format, width);
+ size = nouveau_format_get_nblocksy(s->format, height) * pitch;
+ } else {
+ layout = SWIZZ...
2010 Apr 12
16
[Bug 27603] New: Celestia 1.6.0 crashes with nv04_surface_copy_swizzle assertion
https://bugs.freedesktop.org/show_bug.cgi?id=27603
Summary: [nouveau] Celestia 1.6.0 crashes with
nv04_surface_copy_swizzle assertion
Product: Mesa
Version: unspecified
Platform: x86 (IA32)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component:
2010 May 07
0
Wine release 1.1.44
...ut to prevent a failed test.
Aric Stewart (8):
usp10: Improve Hebrew support in ScriptItemize.
usp10: Improve support for Syriac in ScriptItemize.
usp10/test: Restructure test_ScriptItemize to make the test easier to manage and expand.
usp10: Update ScriptItemize to use the baselevel of a unified run.
shell32: Handle NULL pName in ShellLink fnSetDescription.
usp10: Fix ScriptGetCMap handling of unsupported glyphs.
usp10: ScriptTextOut reorders glyphs that are RTL if they have been processed with fLogicalOrder in previous calls.
usp10: Implement mirroring...