Searched refs:SampleLocationTable (Results 1 – 5 of 5) sorted by relevance
79 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()
116 if (ctx->DrawBuffer->SampleLocationTable) in _mesa_GetMultisamplefv()117 *val = ctx->DrawBuffer->SampleLocationTable[index]; in _mesa_GetMultisamplefv()
165 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()
5413 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()
3604 GLfloat *SampleLocationTable; /**< If NULL, no table has been specified */ member