Lines Matching defs:entry_ptr
2912 ConversionDatabaseEntry& entry_ptr = entries[n];
2914 GLenum iterated_dst_internalformat = entry_ptr.dst_topleft_corner.data_internalformat;
2915 GLenum iterated_dst_type = entry_ptr.dst_topleft_corner.data_type;
2916 GLenum iterated_src_internalformat = entry_ptr.src_topleft_corner.data_internalformat;
2917 GLenum iterated_src_type = entry_ptr.src_topleft_corner.data_type;
2941 ConversionDatabaseEntry& entry_ptr = entries[n_entries_added];
2942 entry_ptr.dst_bottomleft_corner = dst_bottomleft;
2943 entry_ptr.dst_bottomright_corner = dst_bottomright;
2944 entry_ptr.dst_topleft_corner = dst_topleft;
2945 entry_ptr.dst_topright_corner = dst_topright;
2946 entry_ptr.src_bottomleft_corner = src_bottomleft;
2947 entry_ptr.src_bottomright_corner = src_bottomright;
2948 entry_ptr.src_topleft_corner = src_topleft;
2949 entry_ptr.src_topright_corner = src_topright;
2950 entry_ptr.channels_to_compare = channels_to_compare;
8283 ConversionDatabaseEntry& entry_ptr = m_conversion_database->entries[n_entry];
8285 if (entry_ptr.src_bottomleft_corner.data_internalformat == src_internalformat &&
8286 entry_ptr.src_bottomleft_corner.data_type == src_type &&
8287 entry_ptr.dst_bottomleft_corner.data_internalformat == result_internalformat)
8293 *out_src_topleft = entry_ptr.src_topleft_corner;
8294 *out_src_topright = entry_ptr.src_topright_corner;
8295 *out_src_bottomleft = entry_ptr.src_bottomleft_corner;
8296 *out_src_bottomright = entry_ptr.src_bottomright_corner;
8297 *out_dst_topleft = entry_ptr.dst_topleft_corner;
8298 *out_dst_topright = entry_ptr.dst_topright_corner;
8299 *out_dst_bottomleft = entry_ptr.dst_bottomleft_corner;
8300 *out_dst_bottomright = entry_ptr.dst_bottomright_corner;
8302 *out_result_internalformat = entry_ptr.dst_topleft_corner.data_internalformat;
8303 *out_dst_type = entry_ptr.dst_topleft_corner.data_type;
8305 *out_channels_to_compare = entry_ptr.channels_to_compare;