Home
last modified time | relevance | path

Searched refs:commands (Results 1 – 25 of 275) sorted by relevance

1234567891011

/hardware/google/gfxstream/scripts/print_gfx_logs/
Dprint_gfx_logs_test.py38 def create_command_data(commands: List[Command]) -> bytearray:
40 for command in commands:
50 data = create_command_data(stream.commands)
71 capture_id=8261, commands=[command], error_message=None)
85 self.assertEqual(len(streams[0].commands), 1)
86 self.assertEqual(streams[0].commands[0].opcode, command.opcode)
87 self.assertEqual(streams[0].commands[0].original_size, command.original_size)
88 self.assertEqual(len(streams[0].commands[0].data), len(command.data))
89 self.assertEqual(streams[0].commands[0].data, command.data)
92 commands = [create_vk_destroy_instance_command(
[all …]
Dprint_gfx_logs.py70 commands: List[Command]
76 pos_in_file=pos_in_file, timestamp=0, thread_id=0, capture_id=0, commands=[],
151 commands = []
161 commands.append(cmd)
164 commands.reverse() # so that they're sorted from oldest to most recent
165 return Stream(file_pos, timestamp_us, header.thread_id, header.capture_id, commands, None)
214 for cmd_idx, cmd in enumerate(stream.commands):
/hardware/google/gfxstream/
D.gitignore36 /qapi/qapi-commands-block-core.[ch]
37 /qapi/qapi-commands-block.[ch]
38 /qapi/qapi-commands-char.[ch]
39 /qapi/qapi-commands-common.[ch]
40 /qapi/qapi-commands-crypto.[ch]
41 /qapi/qapi-commands-introspect.[ch]
42 /qapi/qapi-commands-migration.[ch]
43 /qapi/qapi-commands-misc.[ch]
44 /qapi/qapi-commands-net.[ch]
45 /qapi/qapi-commands-rocker.[ch]
[all …]
/hardware/google/graphics/common/libacryl/
Dacrylic_g2d.cpp434 show_g2d_commands(task.commands); in show_g2d_task()
446 show_g2d_commands(task.commands); in debug_show_g2d_task()
571 delete [] mTask.commands.target; in ~AcrylicCompositorG2D()
573 delete [] mTask.commands.source[i]; in ~AcrylicCompositorG2D()
586 cnt += writeFilterCoefficients(mTask.commands.source[i][G2DSFR_SRC_XSCALE], in updateFilterCoefficients()
587 mTask.commands.source[i][G2DSFR_SRC_YSCALE], in updateFilterCoefficients()
588 mTask.commands.source[i][G2DSFR_IMG_COLORMODE], in updateFilterCoefficients()
984 if (!mTask.commands.target) { in reallocLayer()
985 mTask.commands.target = new uint32_t[G2DSFR_DST_FIELD_COUNT]; in reallocLayer()
986 if (!mTask.commands.target) { in reallocLayer()
[all …]
Dacrylic_g2d.h87 task.commands.source[idx][G2DSFR_SRC_COMMAND] |= G2D_LAYERCMD_PREMULT_ALPHA; in getLayerHdrMode()
88 task.commands.source[idx][G2DSFR_SRC_HDRMODE] = mCmds->layer_hdr_mode[i].value; in getLayerHdrMode()
98 memcpy(regs, mCmds->commands, sizeof(*regs) * mCmds->command_count); in write()
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/appendices/
DVK_EXT_conditional_rendering.adoc23 This extension allows the execution of one or more rendering commands to be
26 rendering commands without application intervention.
27 The conditional rendering commands are limited to draws, compute dispatches
34 1) Should conditional rendering affect copy and blit commands?
41 *RESOLVED*: The rendering commands in secondary command buffer will be
DVK_KHR_shader_draw_parameters.adoc37 to drawing commands,
39 parameter passed to drawing commands, and
75 arrayed drawing commands.
83 code:glDrawElements commands with code:baseVertex) or 0.
84 In particular there are no code:glDrawArrays commands that take a
88 drawing commands) or pname:firstVertex (for arrayed drawing commands), and
DVK_KHR_copy_commands2.adoc24 copy commands.
25 The new commands are functionally identical to the core commands, except
29 The following extensible copy commands are introduced with this extension:
DVK_AMD_draw_indirect_count.adoc25 indirect drawing commands from a buffer.
27 commands and execute them without host intervention.
DVK_EXT_multi_draw.adoc24 Processing multiple draw commands in sequence incurs measurable overhead
30 These functions could be used any time multiple draw commands are being
DVK_KHR_acceleration_structure.adoc65 * Acceleration structure objects and build commands
67 * Acceleration structure copy commands
93 commands
111 The following is a more detailed comparison of which commands, structures,
114 * Aliased functionality -- enums, structures, and commands that are
138 * Changed enums, structures, and commands:
188 * Added enums, structures and commands:
329 build commands
348 * make build commands more consistent - all now build multiple
471 ** use device addresses instead of VkBuffers for ray tracing commands
[all …]
DVK_QCOM_rotated_copy_commands.adoc18 This extension extends adds an optional rotation transform to copy commands
26 This extension adds an extension structure to the following commands:
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/VK_NV_device_generated_commands/
Dgeneratedcommands.adoc5 [[device-generated-commands]]
11 * Define via sname:VkIndirectCommandsLayoutNV the sequence of commands
28 * Generate and execute the actual commands via
33 When preprocessing commands in a separate step they must: be explicitly
Dgeneration.adoc7 …rementsNV',desc='Retrieve the buffer allocation requirements for generated commands',type='protos']
9 The generation of commands on the device requires a `preprocess` buffer.
90 To bind a compute pipeline in <<device-generated-commands,Device-Generated
183 [open,refpage='vkCmdExecuteGeneratedCommandsNV',desc='Generate and execute commands on the device',…
187 The actual generation of commands as well as their execution on the device
200 affecting the generation of commands.
250 …mmandsInfoNV',desc='Structure specifying parameters for the generation of commands',type='structs']
421 // The stateful commands within indirectCommandsLayout will not
422 // affect the state of subsequent commands in the target
433 …dPreprocessGeneratedCommandsNV',desc='Performs preprocessing for generated commands',type='protos']
[all …]
/hardware/google/graphics/gs201/libacryl_plugins/
Dlibacryl_hdr_plugin.cpp95 std::array<g2d_reg, NUM_HDR_COEFFICIENTS> commands; // (294 * 4 + 1) * 8 bytes member
100 cmdlist.commands = commands.data(); in CommandList()
114 commands[cmdlist.command_count].offset = offset; in set_and_get_next_offset()
115 commands[cmdlist.command_count].value = value; in set_and_get_next_offset()
230 virtual void putCommands(struct g2d_commandlist __unused *commands) override { in putCommands() argument
231 assert(commands == &mCommandList); in putCommands()
/hardware/google/graphics/gs101/libacryl_plugins/
Dlibacryl_hdr_plugin.cpp95 std::array<g2d_reg, NUM_HDR_COEFFICIENTS> commands; // (294 * 4 + 1) * 8 bytes member
100 cmdlist.commands = commands.data(); in CommandList()
114 commands[cmdlist.command_count].offset = offset; in set_and_get_next_offset()
115 commands[cmdlist.command_count].value = value; in set_and_get_next_offset()
230 virtual void putCommands(struct g2d_commandlist __unused *commands) override { in putCommands() argument
231 assert(commands == &mCommandList); in putCommands()
/hardware/google/graphics/zuma/libacryl_plugins/
Dlibacryl_hdr_plugin.cpp115 std::array<g2d_reg, NUM_HDR_COEFFICIENTS> commands; // (294 * 4 + 1) * 8 bytes member
120 cmdlist.commands = commands.data(); in CommandList()
134 commands[cmdlist.command_count].offset = offset; in set_and_get_next_offset()
135 commands[cmdlist.command_count].value = value; in set_and_get_next_offset()
269 virtual void putCommands(struct g2d_commandlist __unused *commands) override { in putCommands() argument
270 assert(commands == &mCommandList); in putCommands()
/hardware/google/graphics/common/libacryl/hdrplugin_headers/hardware/exynos/
Dg2d_hdr_plugin.h26 struct g2d_reg *commands; member
41 virtual void putCommands(struct g2d_commandlist __unused *commands) { }; in putCommands() argument
/hardware/google/gfxstream/guest/mesa/src/vulkan/overlay-layer/
Dmesa-overlay-control.py197 commands = parser.add_subparsers(help='commands to run', dest='cmd') variable
198 commands.add_parser('start-capture')
199 commands.add_parser('stop-capture')
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/VK_AMD_buffer_marker/
Dcopies.adoc27 all preceding commands have finished executing up to at least the specified
30 fname:vkCmdWriteBufferMarker2AMD commands so long as their specified
37 ordered using synchronization commands.
108 all preceding commands have finished executing up to at least the specified
111 fname:vkCmdWriteBufferMarkerAMD commands so long as their specified pipeline
118 explicitly ordered using synchronization commands.
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/style/
Dnaming.adoc154 commands defined by the `VK_KHR_get_physical_device_properties2` extension,
236 creation commands).
270 A number of commands in the API are used to determine the properties of some
281 These commands fall into two categories from a naming perspective:
285 These are commands which query capabilities of objects that an
287 Such commands use the verb "Enumerate" to identify themselves.
291 Whilst these commands describe properties of the named object, they do not
297 These commands are used to query the current properties of an object that
299 Such commands use the verb "Get" to identify themselves.
303 These commands always have a parameter of the object type.
[all …]
/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/chapters/commonvalidity/
Dtrace_rays_binding_table_raygen_stride.adoc6 // Common to KHR trace rays commands with non-indirect SBT
Dtrace_rays_common.adoc6 // Common to trace rays commands
Dsurface_physical_device_common.adoc6 // Common to all VkPhysicalDevice commands accepting a VkSurfaceKHR param
/hardware/interfaces/nfc/1.0/
DINfc.hal27 * NCI initialization - ie accept CORE_RESET and subsequent commands through
88 * Grant HAL the exclusive control to send NCI commands.
90 * Must only be called when there are no NCI commands pending.

1234567891011