Searched refs:sample_location (Results 1 – 15 of 15) sorted by relevance
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_cmd_buffer.c | 132 dest->sample_location.count = src->sample_location.count; in radv_bind_dynamic_state() 223 if (dest->sample_location.per_pixel != src->sample_location.per_pixel || in radv_bind_dynamic_state() 224 dest->sample_location.grid_size.width != src->sample_location.grid_size.width || in radv_bind_dynamic_state() 225 dest->sample_location.grid_size.height != src->sample_location.grid_size.height || in radv_bind_dynamic_state() 226 memcmp(&dest->sample_location.locations, &src->sample_location.locations, in radv_bind_dynamic_state() 227 src->sample_location.count * sizeof(VkSampleLocationEXT))) { in radv_bind_dynamic_state() 228 dest->sample_location.per_pixel = src->sample_location.per_pixel; in radv_bind_dynamic_state() 229 dest->sample_location.grid_size = src->sample_location.grid_size; in radv_bind_dynamic_state() 230 typed_memcpy(dest->sample_location.locations, src->sample_location.locations, in radv_bind_dynamic_state() 231 src->sample_location.count); in radv_bind_dynamic_state() [all …]
|
D | radv_meta.c | 189 typed_memcpy(&state->dynamic.sample_location, &cmd_buffer->state.dynamic.sample_location, 1); in radv_meta_save() 335 typed_memcpy(&cmd_buffer->state.dynamic.sample_location.locations, in radv_meta_restore() 336 &state->dynamic.sample_location.locations, 1); in radv_meta_restore()
|
D | radv_private.h | 1295 struct radv_sample_locations_state sample_location; member 1391 struct radv_sample_locations_state sample_location; member 1411 struct radv_sample_locations_state sample_location; member
|
D | radv_meta_resolve.c | 804 return &state->subpass_sample_locs[i].sample_location; in radv_get_resolve_sample_locations()
|
D | radv_pipeline.c | 2100 dynamic->sample_location.per_pixel = info->ms.sample_locs_per_pixel; in radv_pipeline_init_dynamic_state() 2101 dynamic->sample_location.grid_size = info->ms.sample_locs_grid_size; in radv_pipeline_init_dynamic_state() 2102 dynamic->sample_location.count = info->ms.sample_locs_count; in radv_pipeline_init_dynamic_state() 2103 typed_memcpy(&dynamic->sample_location.locations[0], info->ms.sample_locs, in radv_pipeline_init_dynamic_state()
|
/third_party/mesa3d/src/gallium/drivers/freedreno/a2xx/ |
D | ir2_assemble.c | 224 tex->sample_location = SAMPLE_CENTER; in fill_instr() 243 tex->sample_location = SAMPLE_CENTER; in fill_instr()
|
/third_party/vk-gl-cts/external/openglcts/modules/glesext/geometry_shader/ |
D | esextcGeometryShaderRendering.cpp | 6158 tcu::Vec2 sample_location; in verify() local 6161 sample_location = (triangle_vertex1 + triangle_vertex2 + triangle_vertex3) / 3.0f; in verify() 6162 … sample_location_int[0] = int(sample_location[0] * static_cast<float>(single_rt_width - 1) + 0.5f); in verify() 6163 …sample_location_int[1] = int(sample_location[1] * static_cast<float>(single_rt_height - 1) + 0.5f)… in verify() 6182 … m_testCtx.getLog() << tcu::TestLog::Message << "Rendered data at (" << sample_location[0] << ", " in verify() 6183 << sample_location[1] << ") " in verify()
|
/third_party/mesa3d/src/freedreno/ir2/ |
D | instr-a2xx.h | 342 instr_sample_loc_t sample_location : 1; member
|
D | disasm-a2xx.c | 451 printf(" LOCATION(%s)", sample_loc[tex->sample_location]); in print_fetch_tex()
|
/third_party/openGLES/extensions/NV/ |
D | NV_sample_locations.txt | 224 sample_location.xy = (table[2*sample_i], table[2*sample_i+1]); 233 sample_location.xy = (table[2*sample_i], table[2*sample_i+1]);
|
D | NV_gpu_multicast.txt | 569 sample_location.xy = (table[2*sample_i], table[2*sample_i+1]); 575 sample_location.xy = (table[2*sample_i], table[2*sample_i+1]);
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_sample_locations.txt | 224 sample_location.xy = (table[2*sample_i], table[2*sample_i+1]); 233 sample_location.xy = (table[2*sample_i], table[2*sample_i+1]);
|
D | NV_gpu_multicast.txt | 554 sample_location.xy = (table[2*sample_i], table[2*sample_i+1]); 560 sample_location.xy = (table[2*sample_i], table[2*sample_i+1]);
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_sample_locations.txt | 243 sample_location.xy = (table[2*sample_i], table[2*sample_i+1]); 252 sample_location.xy = (table[2*sample_i], table[2*sample_i+1]);
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_sample_locations.txt | 233 sample_location.xy = (table[2*sample_i], table[2*sample_i+1]); 242 sample_location.xy = (table[2*sample_i], table[2*sample_i+1]);
|