Home
last modified time | relevance | path

Searched refs:SampleLocationTable (Results 1 – 5 of 5) sorted by relevance

/external/mesa3d/src/mesa/state_tracker/
Dst_atom_msaa.c79 if (fb->SampleLocationTable) { in update_sample_locations()
80 x = fb->SampleLocationTable[table_index*2]; in update_sample_locations()
81 y = fb->SampleLocationTable[table_index*2+1]; in update_sample_locations()
/external/mesa3d/src/mesa/main/
Dmultisample.c116 if (ctx->DrawBuffer->SampleLocationTable) in _mesa_GetMultisamplefv()
117 *val = ctx->DrawBuffer->SampleLocationTable[index]; in _mesa_GetMultisamplefv()
Dframebuffer.c165 fb->SampleLocationTable = NULL; in _mesa_initialize_window_framebuffer()
192 fb->SampleLocationTable = NULL; in _mesa_initialize_user_framebuffer()
240 free(fb->SampleLocationTable); in _mesa_free_framebuffer_data()
241 fb->SampleLocationTable = NULL; in _mesa_free_framebuffer_data()
Dfbobject.c5413 if (!fb->SampleLocationTable) { in sample_locations()
5415 fb->SampleLocationTable = malloc(size); in sample_locations()
5416 if (!fb->SampleLocationTable) { in sample_locations()
5422 fb->SampleLocationTable[i] = 0.5f; in sample_locations()
5444 fb->SampleLocationTable[start * 2 + i] = 0.5f; in sample_locations()
5446 fb->SampleLocationTable[start * 2 + i] = SATURATE(v[i]); in sample_locations()
Dmtypes.h3604 GLfloat *SampleLocationTable; /**< If NULL, no table has been specified */ member