| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/ |
| H A D | basetexture9.h | 38 struct pipe_sampler_view *view[2]; /* linear and sRGB */ 112 const int sRGB ); 127 NineBaseTexture9_GetSamplerView( struct NineBaseTexture9 *This, const int sRGB ) argument 129 if (!This->view[sRGB]) 130 NineBaseTexture9_UpdateSamplerView(This, sRGB); 131 return This->view[sRGB];
|
| H A D | surface9.h | 39 struct pipe_surface *surface[2]; /* created on-demand (linear, sRGB) */ 94 NineSurface9_GetSurface( struct NineSurface9 *This, int sRGB ) argument 96 assert(This->surface[sRGB]); 97 return This->surface[sRGB];
|
| H A D | basetexture9.c | 491 const int sRGB ) 502 DBG("This=%p sRGB=%d\n", This, sRGB); 511 pipe_sampler_view_reference(&This->view[sRGB], NULL); 556 /* if requested and supported, convert to the sRGB format */ 558 if (sRGB && srgb_format != PIPE_FORMAT_NONE && 576 This->view[sRGB] = pipe->create_sampler_view(pipe, resource, &templ); 579 DBG("sampler view = %p(resource = %p)\n", This->view[sRGB], resource); 490 NineBaseTexture9_UpdateSamplerView(struct NineBaseTexture9 * This,const int sRGB) argument
|
| H A D | nine_state.c | 698 const int sRGB = context->rs[D3DRS_SRGBWRITEENABLE] ? 1 : 0; local in function:update_framebuffer 727 fb->cbufs[i] = NineSurface9_GetSurface(rt, sRGB); 958 /* TODO: add sRGB override to pipe_sampler_state ? */ 976 int sRGB; local in function:update_textures_and_samplers 984 sRGB = context->samp[s][D3DSAMP_SRGBTEXTURE] ? 1 : 0; 986 view[i] = context->texture[s].view[sRGB]; 1024 int sRGB; local in function:update_textures_and_samplers 1032 sRGB = context->samp[s][D3DSAMP_SRGBTEXTURE] ? 1 : 0; 1034 view[i] = context->texture[s].view[sRGB]; 2172 const int sRGB local in function:CSMT_ITEM_NO_WAIT [all...] |
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/ |
| H A D | basetexture9.h | 38 struct pipe_sampler_view *view[2]; /* linear and sRGB */ 115 const int sRGB ); 130 NineBaseTexture9_GetSamplerView( struct NineBaseTexture9 *This, const int sRGB ) argument 132 if (!This->view[sRGB]) 133 NineBaseTexture9_UpdateSamplerView(This, sRGB); 134 return This->view[sRGB];
|
| H A D | surface9.h | 40 struct pipe_surface *surface[2]; /* created on-demand (linear, sRGB) */ 95 NineSurface9_GetSurface( struct NineSurface9 *This, int sRGB ) argument 97 assert(This->surface[sRGB]); 98 return This->surface[sRGB];
|
| H A D | basetexture9.c | 486 const int sRGB ) 497 DBG("This=%p sRGB=%d\n", This, sRGB); 506 pipe_sampler_view_reference(&This->view[sRGB], NULL); 551 /* if requested and supported, convert to the sRGB format */ 553 if (sRGB && srgb_format != PIPE_FORMAT_NONE && 571 This->view[sRGB] = pipe->create_sampler_view(pipe, resource, &templ); 574 DBG("sampler view = %p(resource = %p)\n", This->view[sRGB], resource); 576 return This->view[sRGB] ? D3D_OK : D3DERR_DRIVERINTERNALERROR; 485 NineBaseTexture9_UpdateSamplerView(struct NineBaseTexture9 * This,const int sRGB) argument
|
| H A D | nine_state.c | 725 const int sRGB = context->rs[D3DRS_SRGBWRITEENABLE] ? 1 : 0; local in function:update_framebuffer 754 fb->cbufs[i] = NineSurface9_GetSurface(rt, sRGB); 988 /* TODO: add sRGB override to pipe_sampler_state ? */ 1007 int sRGB = context->samp[s][D3DSAMP_SRGBTEXTURE] ? 1 : 0; local in function:update_textures_and_samplers 1009 view[i] = context->texture[s].view[sRGB]; 1053 int sRGB = context->samp[s][D3DSAMP_SRGBTEXTURE] ? 1 : 0; local in function:update_textures_and_samplers 1055 view[i] = context->texture[s].view[sRGB]; 2223 const int sRGB = context->rs[D3DRS_SRGBWRITEENABLE] ? 1 : 0; local in function:CSMT_ITEM_NO_WAIT 2305 cbuf = NineSurface9_GetSurface(rt, sRGB);
|
| /xsrc/external/mit/MesaLib/dist/docs/isl/ |
| H A D | formats.rst | 94 Understanding sRGB 97 The sRGB colorspace is one of the least tractable concepts in the entire world 100 values. The sRGB color space, on the other hand, is non-linear and provides 102 relationship between linear and sRGB is governed by the following continuous 113 where :math:`c_l` is the linear color and :math:`c_s` is the color in sRGB. 117 The key to understanding sRGB is to think about it starting from the physical 118 display. All displays work natively in sRGB. On older displays, there isn't 122 the gamma curve of your average CRT is approximately the sRGB curve. More 125 in sRGB. When an image is sent to the X server, X passes the pixels on to the 129 the sRGB colorspac [all...] |
| /xsrc/external/mit/MesaLib/dist/docs/relnotes/ |
| H A D | 10.4.7.rst | 82 - r300g: fix a crash when resolving into an sRGB texture 83 - r300g: fix sRGB->sRGB blits
|
| H A D | 10.0.3.rst | 141 - st/mesa: use sRGB formats for MSAA resolving if destination is sRGB 142 - gallium/util: util_format_srgb should not return FORMAT_NONE for sRGB
|
| H A D | 19.3.1.rst | 35 - Visuals without alpha bits are not sRGB-capable
|
| H A D | 10.5.1.rst | 151 - r300g: fix a crash when resolving into an sRGB texture 152 - r300g: fix sRGB->sRGB blits
|
| H A D | 18.1.2.rst | 81 - i965/screen: Use RGBA non-sRGB formats for images
|
| H A D | 19.0.7.rst | 71 - virgl: Assume sRGB write control for older guest kernels or
|
| H A D | 19.1.1.rst | 73 - virgl: Assume sRGB write control for older guest kernels or
|
| H A D | 18.1.8.rst | 82 - st/dri: Don't expose sRGB formats to clients
|
| H A D | 9.2.1.rst | 109 - i965: Reenable glBitmap() after the sRGB winsys enabling.
|
| H A D | 9.0.2.rst | 213 - r300g: fix texture border color for sRGB formats 226 - mesa: fix BlitFramebuffer between linear and sRGB formats
|
| H A D | 13.0.0.rst | 228 the GL 4.4 sRGB rules" 239 GenerateMipmap creates wrong mipmap for sRGB texture
|
| H A D | 8.0.3.rst | 51 [bisected i965] oglc sRGB(Mipmap.1D_textures) regressed
|
| H A D | 8.0.5.rst | 153 - st/mesa: call update_renderbuffer_surface for sRGB renderbuffers, too
|
| H A D | 9.0.3.rst | 136 - svga: fix sRGB rendering
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/docs/source/ |
| H A D | format.rst | 42 The ``SRGB`` suffix is like ``UNORM`` in range, but in the sRGB colorspace.
|
| /xsrc/external/mit/MesaLib/dist/docs/gallium/ |
| H A D | format.rst | 42 The ``SRGB`` suffix is like ``UNORM`` in range, but in the sRGB colorspace.
|