search for: image_format

Displaying 5 results from an estimated 5 matches for "image_format".

2017 Jun 11
0
[RFC 4/9] tgsi: populate precise
...TGSI_OPCODE_RESQ: @@ -5966,7 +5966,7 @@ compile_tgsi_instruction(struct st_translate *t, assert(src[0].File != TGSI_FILE_NULL); ureg_memory_insn(ureg, inst->op, dst, num_dst, src, num_src, inst->buffer_access, - tex_target, inst->image_format); + tex_target, inst->image_format, inst->precise); break; case TGSI_OPCODE_STORE: @@ -5984,19 +5984,19 @@ compile_tgsi_instruction(struct st_translate *t, assert(dst[0].File != TGSI_FILE_NULL); ureg_memory_insn(ureg, inst->op, dst, num_dst,...
2017 Jun 11
14
[RFC 0/9] Add precise/invariant semantics to TGSI
Running Tomb Raider on Nouveau I found some flicker caused by ignoring precise modifiers on variables inside Nouveau. This series add precise/invariant handling to TGSI, which can be then used by drivers to disable certain unsafe optimisations which may otherwise alter calculations, which depend on having the same result across shaders. This series fixes this bug in Tomb Raider and one CTS test
2016 Apr 21
1
Re: virt-builder and SimpleStreams
...size": Virtual size of the image in bytes. Note this is not the same as the uncompressed size (except for "raw"). This is the size of the image as it appears inside the guest. The 'qemu-img info' program is able to show the virtual size of any disk. And: "image_format": Image format, eg. "raw", "qcow2". Ignore any compression (eg .xz) applied to the image, this is the format after it has been decompressed. "expand_filesystem": The filesystem to resize. Use a name like "/dev/sda3" to mean the third par...
2009 Apr 17
2
win32-clipboard issues and support for additional formats
...ng like this def self.data(format = TEXT) begin self.open if IsClipboardFormatAvailable(format) clipdata = GetClipboardData(format) case format when text_format clipdata = get_text_data(clipdata) when image_format clipdata = get_image_data(clipdata) when other_format # ??? end else clipdata = '''' end ensure self.close end clipdata end Any suggestions? Regards, Dan
2016 Apr 20
2
virt-builder and SimpleStreams
Pino, do you remember what the missing data was that prevents virt-builder from working properly with SimpleStreams? IIRC it was the target (expanded) size of the image, as it means we don't know during the planning stage if we will need to resize the image. CentOS may start to publish this data, but we will need to ask Karanbir to add the extra data we need in JSON field(s). Rich. --