/third_party/mesa3d/src/gallium/drivers/llvmpipe/ |
D | lp_scene.c | 67 struct lp_scene *scene = slab_alloc_st(&setup->scene_slab); in lp_scene_create() local 68 if (!scene) in lp_scene_create() 71 memset(scene, 0, sizeof(struct lp_scene)); in lp_scene_create() 72 scene->pipe = setup->pipe; in lp_scene_create() 73 scene->setup = setup; in lp_scene_create() 74 scene->data.head = &scene->data.first; in lp_scene_create() 76 (void) mtx_init(&scene->mutex, mtx_plain); in lp_scene_create() 93 return scene; in lp_scene_create() 101 lp_scene_destroy(struct lp_scene *scene) in lp_scene_destroy() argument 103 lp_scene_end_rasterization(scene); in lp_scene_destroy() [all …]
|
D | lp_scene.h | 209 void lp_scene_destroy(struct lp_scene *scene); 211 boolean lp_scene_is_empty(struct lp_scene *scene); 212 boolean lp_scene_is_oom(struct lp_scene *scene); 215 struct data_block *lp_scene_new_data_block(struct lp_scene *scene); 217 struct cmd_block *lp_scene_new_cmd_block(struct lp_scene *scene, 220 boolean lp_scene_add_resource_reference(struct lp_scene *scene, 225 unsigned lp_scene_is_resource_referenced(const struct lp_scene *scene, 228 boolean lp_scene_add_frag_shader_reference(struct lp_scene *scene, 238 lp_scene_alloc(struct lp_scene *scene, unsigned size) in lp_scene_alloc() argument 240 struct data_block_list *list = &scene->data; in lp_scene_alloc() [all …]
|
D | lp_rast.c | 71 struct lp_scene *scene) in lp_rast_begin() argument 73 rast->curr_scene = scene; in lp_rast_begin() 77 lp_scene_begin_rasterization(scene); in lp_rast_begin() 78 lp_scene_bin_iter_begin(scene); in lp_rast_begin() 99 struct lp_scene *scene = task->scene; in lp_rast_tile_begin() local 106 task->width = TILE_SIZE + x * TILE_SIZE > scene->fb.width ? in lp_rast_tile_begin() 107 scene->fb.width - x * TILE_SIZE : TILE_SIZE; in lp_rast_tile_begin() 108 task->height = TILE_SIZE + y * TILE_SIZE > scene->fb.height ? in lp_rast_tile_begin() 109 scene->fb.height - y * TILE_SIZE : TILE_SIZE; in lp_rast_tile_begin() 114 for (unsigned i = 0; i < scene->fb.nr_cbufs; i++) { in lp_rast_tile_begin() [all …]
|
D | lp_rast_priv.h | 87 struct lp_scene *scene; member 159 assert(x < task->scene->tiles_x * TILE_SIZE); in lp_rast_get_color_block_pointer() 160 assert(y < task->scene->tiles_y * TILE_SIZE); in lp_rast_get_color_block_pointer() 163 assert(buf < task->scene->fb.nr_cbufs); in lp_rast_get_color_block_pointer() 174 unsigned pixel_offset = px * task->scene->cbufs[buf].format_bytes + in lp_rast_get_color_block_pointer() 175 py * task->scene->cbufs[buf].stride; in lp_rast_get_color_block_pointer() 179 assert(layer <= task->scene->fb_max_layer); in lp_rast_get_color_block_pointer() 180 color += layer * task->scene->cbufs[buf].layer_stride; in lp_rast_get_color_block_pointer() 183 …assert(lp_check_alignment(color, llvmpipe_get_format_alignment(task->scene->fb.cbufs[buf]->format)… in lp_rast_get_color_block_pointer() 196 assert(x < task->scene->tiles_x * TILE_SIZE); in lp_rast_get_depth_block_pointer() [all …]
|
D | lp_rast_linear.c | 53 const struct lp_scene *scene = task->scene; in lp_rast_linear_clear() local 54 util_fill_rect(scene->cbufs[0].map, in lp_rast_linear_clear() 56 scene->cbufs[0].stride, in lp_rast_linear_clear() 82 const struct lp_scene *scene = task->scene; in lp_rast_linear_tile() local 93 scene->cbufs[0].map, in lp_rast_linear_tile() 94 scene->cbufs[0].stride)) in lp_rast_linear_tile() 107 scene->cbufs[0].map, in lp_rast_linear_tile() 108 scene->cbufs[0].stride)) in lp_rast_linear_tile() 130 const struct lp_scene *scene = task->scene; in lp_rast_linear_rect() local 161 scene->cbufs[0].map, in lp_rast_linear_rect() [all …]
|
D | lp_setup.c | 86 assert(setup->scene == NULL); in lp_setup_get_empty_scene() 105 struct lp_scene *scene = lp_scene_create(setup); in lp_setup_get_empty_scene() local 106 if (!scene) { in lp_setup_get_empty_scene() 111 setup->scenes[setup->num_active_scenes] = scene; in lp_setup_get_empty_scene() 117 setup->scene = setup->scenes[i]; in lp_setup_get_empty_scene() 118 setup->scene->permit_linear_rasterizer = setup->permit_linear_rasterizer; in lp_setup_get_empty_scene() 119 lp_scene_begin_binning(setup->scene, &setup->fb); in lp_setup_get_empty_scene() 186 setup->scene = NULL; in lp_setup_reset() 206 struct lp_scene *scene = setup->scene; in lp_setup_rasterize_scene() local 207 struct llvmpipe_screen *screen = llvmpipe_screen(scene->pipe->screen); in lp_setup_rasterize_scene() [all …]
|
D | lp_setup_rect.c | 69 lp_setup_alloc_rectangle(struct lp_scene *scene, unsigned nr_inputs) in lp_setup_alloc_rectangle() argument 74 rect = lp_scene_alloc_aligned(scene, bytes, 16); in lp_setup_alloc_rectangle() 95 struct lp_scene *scene = setup->scene; in lp_setup_whole_tile() local 114 if (!scene->fb.zsbuf && scene->fb_max_layer == 0 && in lp_setup_whole_tile() 115 !scene->had_queries) { in lp_setup_whole_tile() 119 lp_scene_bin_reset(scene, tx, ty); in lp_setup_whole_tile() 124 return lp_scene_bin_cmd_with_state(scene, tx, ty, in lp_setup_whole_tile() 130 return lp_scene_bin_cmd_with_state(scene, tx, ty, in lp_setup_whole_tile() 137 return lp_scene_bin_cmd_with_state(scene, tx, ty, in lp_setup_whole_tile() 218 lp_scene_bin_cmd_with_state(setup->scene, in partial() [all …]
|
D | lp_rast_debug.c | 465 lp_scene_bin_size( const struct lp_scene *scene, unsigned x, unsigned y ) in lp_scene_bin_size() argument 467 struct cmd_bin *bin = lp_scene_get_bin((struct lp_scene *) scene, x, y); in lp_scene_bin_size() 480 lp_debug_draw_bins_by_coverage( struct lp_scene *scene ) in lp_debug_draw_bins_by_coverage() argument 488 for (x = 0; x < scene->tiles_x; x++) in lp_debug_draw_bins_by_coverage() 492 for (y = 0; y < scene->tiles_y; y++) { in lp_debug_draw_bins_by_coverage() 493 for (x = 0; x < scene->tiles_x; x++) { in lp_debug_draw_bins_by_coverage() 494 struct cmd_bin *bin = lp_scene_get_bin(scene, x, y); in lp_debug_draw_bins_by_coverage() 522 for (x = 0; x < scene->tiles_x; x++) in lp_debug_draw_bins_by_coverage() 544 lp_debug_draw_bins_by_cmd_length( struct lp_scene *scene ) in lp_debug_draw_bins_by_cmd_length() argument 548 for (y = 0; y < scene->tiles_y; y++) { in lp_debug_draw_bins_by_cmd_length() [all …]
|
D | lp_scene_queue.c | 113 struct lp_scene *scene = queue->scenes[queue->head++ % SCENE_QUEUE_SIZE]; in lp_scene_dequeue() local 118 return scene; in lp_scene_dequeue() 124 lp_scene_enqueue(struct lp_scene_queue *queue, struct lp_scene *scene) in lp_scene_enqueue() argument 132 queue->scenes[queue->tail++ % SCENE_QUEUE_SIZE] = scene; in lp_scene_enqueue()
|
/third_party/flutter/skia/third_party/externals/angle2/third_party/glmark2/ |
D | BUILD.gn | 56 # A warning generated in scene-effect-2d in vec2::calc_offset 109 "src/src/scene.h", 169 include_dirs = [ "src/src/scene-ideas" ] 176 "src/src/scene-ideas/a.cc", 177 "src/src/scene-ideas/characters.h", 178 "src/src/scene-ideas/d.cc", 179 "src/src/scene-ideas/e.cc", 180 "src/src/scene-ideas/i.cc", 181 "src/src/scene-ideas/lamp.cc", 182 "src/src/scene-ideas/lamp.h", [all …]
|
/third_party/skia/third_party/externals/angle2/third_party/glmark2/ |
D | BUILD.gn | 62 # A warning generated in scene-effect-2d in vec2::calc_offset 118 "src/src/scene.h", 178 include_dirs = [ "src/src/scene-ideas" ] 185 "src/src/scene-ideas/a.cc", 186 "src/src/scene-ideas/characters.h", 187 "src/src/scene-ideas/d.cc", 188 "src/src/scene-ideas/e.cc", 189 "src/src/scene-ideas/i.cc", 190 "src/src/scene-ideas/lamp.cc", 191 "src/src/scene-ideas/lamp.h", [all …]
|
/third_party/vk-gl-cts/framework/common/ |
D | tcuRasterizationVerifier.cpp | 44 …onWithProjectedWeights (const tcu::Surface& surface, const LineSceneSpec& scene, const Rasterizati… 565 const TriangleSceneSpec& scene; member 568 : scene(scene_) in TriangleInterpolator() 587 …cTriangleInterpolationWeights(scene.triangles[primitiveNdx].positions[0], scene.triangles[primitiv… in interpolate() 588 …cTriangleInterpolationWeights(scene.triangles[primitiveNdx].positions[0], scene.triangles[primitiv… in interpolate() 589 …cTriangleInterpolationWeights(scene.triangles[primitiveNdx].positions[0], scene.triangles[primitiv… in interpolate() 590 …cTriangleInterpolationWeights(scene.triangles[primitiveNdx].positions[0], scene.triangles[primitiv… in interpolate() 606 const LineSceneSpec& scene; member 609 : scene(scene_) in MultisampleLineInterpolator() 630 const float wa = scene.lines[lineNdx].positions[0].w(); in interpolate() [all …]
|
D | tcuRasterizationVerifier.hpp | 177 bool verifyTriangleGroupRasterization (const tcu::Surface& surface, const TriangleSceneSpec& scene,… 188 bool verifyLineGroupRasterization (const tcu::Surface& surface, const LineSceneSpec& scene, const R… 201 …LineGroupRasterization (const tcu::Surface& surface, const LineSceneSpec& scene, const Rasterizati… 211 bool verifyRelaxedLineGroupRasterization (const tcu::Surface& surface, const LineSceneSpec& scene, … 222 bool verifyPointGroupRasterization (const tcu::Surface& surface, const PointSceneSpec& scene, const… 233 bool verifyTriangleGroupInterpolation (const tcu::Surface& surface, const TriangleSceneSpec& scene,… 244 …LineGroupInterpolation (const tcu::Surface& surface, const LineSceneSpec& scene, const Rasterizati… 256 …LineGroupInterpolation (const tcu::Surface& surface, const LineSceneSpec& scene, const Rasterizati…
|
/third_party/gn/examples/ios/app/ |
D | SceneDelegate.m | 9 - (void)scene:(UIScene*)scene 14 - (void)sceneDidDisconnect:(UIScene*)scene { 17 - (void)sceneDidBecomeActive:(UIScene*)scene { 20 - (void)sceneWillResignActive:(UIScene*)scene { 23 - (void)sceneWillEnterForeground:(UIScene*)scene { 26 - (void)sceneDidEnterBackground:(UIScene*)scene {
|
/third_party/gstreamer/gstplugins_bad/sys/androidmedia/ |
D | gstahcsrc.c | 112 static gboolean _scene_modes_to_enum (const gchar * scene, 617 GstPhotographySceneMode scene = g_value_get_enum (value); in gst_ahc_src_set_property() local 619 gst_ahc_src_set_scene_mode (GST_PHOTOGRAPHY (self), scene); in gst_ahc_src_set_property() 784 GstPhotographySceneMode scene; in gst_ahc_src_get_property() local 786 if (gst_ahc_src_get_scene_mode (GST_PHOTOGRAPHY (self), &scene)) in gst_ahc_src_get_property() 787 g_value_set_enum (value, scene); in gst_ahc_src_get_property() 925 _scene_modes_to_enum (const gchar * scene, GstPhotographySceneMode * mode) in _scene_modes_to_enum() argument 927 if (scene == Parameters_SCENE_MODE_AUTO) in _scene_modes_to_enum() 929 else if (scene == Parameters_SCENE_MODE_ACTION) in _scene_modes_to_enum() 931 else if (scene == Parameters_SCENE_MODE_PORTRAIT) in _scene_modes_to_enum() [all …]
|
/third_party/openGLES/extensions/WIN/ |
D | WIN_scene_markerXXX.txt | 33 multiple passes of the primitives in a scene in order to fully render them to 35 by defining their boundaries, enabling the device driver to capture the scene's 36 data base and take multiple passes over the scene to present it to the 38 whether scene delimiting must be used by the application. 41 glBeginScene, glEndScene - delimit a scene 49 a single scene. 84 params returns a single Boolean value indicating whether scene delimiting is required.
|
/third_party/skia/third_party/externals/opengl-registry/extensions/WIN/ |
D | WIN_scene_markerXXX.txt | 33 multiple passes of the primitives in a scene in order to fully render them to 35 by defining their boundaries, enabling the device driver to capture the scene's 36 data base and take multiple passes over the scene to present it to the 38 whether scene delimiting must be used by the application. 41 glBeginScene, glEndScene - delimit a scene 49 a single scene. 84 params returns a single Boolean value indicating whether scene delimiting is required.
|
/third_party/flutter/engine/flutter/lib/web_ui/lib/src/ui/ |
D | compositing.dart | 7 /// An opaque object representing a composited scene. 22 /// Creates a raster image representation of the current state of the scene. 36 /// Releases the resources used by this scene. 38 /// After calling this function, the scene is cannot be used further. 122 /// it to the scene using [addPicture]. 142 /// The scene built by this scene builder. 154 'building scene surfaces. After building the scene the persisted ' 156 'to the scene itself (_PersistedScene). All other surfaces ' 277 /// The given filter is applied to the current contents of the scene prior to 345 /// Internally the scene builder maintains a stack of operations. Each of the [all …]
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_scene_marker.txt | 29 other architectures requiring a scene database, such as scanline depth 45 expensive within a scene. 47 * State queries within a scene may also be very expensive, if they are 50 allow state queries within a scene, but document that they may be 110 scene. These implementations may process commands in such a way that it 112 buffer to occur during the course of rendering the scene. When 116 A scene is started by issuing the command BeginSceneEXT; the contents of 118 BeginSceneEXT. A scene is marked complete by issuing the command 148 GLX_SCENE_REQUIRED_EXT, it returns True if the visual requires scene 152 that require scene markers are preferred. [all …]
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_scene_marker.txt | 29 other architectures requiring a scene database, such as scanline depth 45 expensive within a scene. 47 * State queries within a scene may also be very expensive, if they are 50 allow state queries within a scene, but document that they may be 110 scene. These implementations may process commands in such a way that it 112 buffer to occur during the course of rendering the scene. When 116 A scene is started by issuing the command BeginSceneEXT; the contents of 118 BeginSceneEXT. A scene is marked complete by issuing the command 148 GLX_SCENE_REQUIRED_EXT, it returns True if the visual requires scene 152 that require scene markers are preferred. [all …]
|
/third_party/flutter/engine/flutter/lib/ui/ |
D | compositing.dart | 7 /// An opaque object representing a composited scene. 23 /// Creates a raster image representation of the current state of the scene. 35 /// Releases the resources used by this scene. 37 /// After calling this function, the scene is cannot be used further. 178 /// it to the scene using [addPicture]. 185 // Layers used in this scene. 191 // In debug mode checks that the `layer` is only used once in a given scene. 201 'The layer is already being used as ${_usedLayers[layer]} in this scene.\n' 202 'A layer may only be used once in a given scene.' 254 /// method counts as _usage_. A layer can be used no more than once in a scene. [all …]
|
/third_party/flutter/flutter/examples/layers/raw/ |
D | touch_input.dart | 37 // composited scene. 55 // We build a very simple scene graph with two nodes. The root node is a 64 // When we're done recording the scene, we call build() to obtain an immutable 65 // record of the scene we've recorded. 73 // Second, include that picture in a scene graph. 74 final ui.Scene scene = composite(picture, paintBounds); 75 // Third, instruct the engine to render that scene graph. 76 ui.window.render(scene);
|
/third_party/vk-gl-cts/modules/gles3/performance/ |
D | es3pBufferDataUploadTests.cpp | 3877 static int getLayeredGridNumVertices (const LayeredGridSpec& scene) in getLayeredGridNumVertices() argument 3879 return scene.gridWidth * scene.gridHeight * scene.gridLayers * 6; in getLayeredGridNumVertices() 3882 …eLayeredGridVertexAttribData4C4V (std::vector<tcu::Vec4>& vertexData, const LayeredGridSpec& scene) in generateLayeredGridVertexAttribData4C4V() argument 3888 vertexData.resize(getLayeredGridNumVertices(scene) * 2); in generateLayeredGridVertexAttribData4C4V() 3890 for (int cellY = 0; cellY < scene.gridHeight; ++cellY) in generateLayeredGridVertexAttribData4C4V() 3891 for (int cellX = 0; cellX < scene.gridWidth; ++cellX) in generateLayeredGridVertexAttribData4C4V() 3892 for (int cellZ = 0; cellZ < scene.gridLayers; ++cellZ) in generateLayeredGridVertexAttribData4C4V() 3895 const float cellLeft = (float(cellX ) / (float)scene.gridWidth - 0.5f) * 2.0f; in generateLayeredGridVertexAttribData4C4V() 3896 const float cellRight = (float(cellX+1) / (float)scene.gridWidth - 0.5f) * 2.0f; in generateLayeredGridVertexAttribData4C4V() 3897 const float cellTop = (float(cellY+1) / (float)scene.gridHeight - 0.5f) * 2.0f; in generateLayeredGridVertexAttribData4C4V() [all …]
|
/third_party/gstreamer/gstplugins_base/tests/examples/overlay/ |
D | qtgv-videooverlay.cpp | 106 QGraphicsScene scene; in main() local 107 scene.setSceneRect( -100.0, -100.0, 200.0, 200.0 ); in main() 109 QGraphicsView view( &scene ); in main()
|
/third_party/vk-gl-cts/modules/gles2/functional/ |
D | es2fRasterizationTests.cpp | 266 TriangleSceneSpec scene; in iterate() local 274 scene.triangles.swap(triangles); in iterate() 276 compareOk = verifyTriangleGroupRasterization(resultImage, scene, args, m_testCtx.getLog()); in iterate() 363 LineSceneSpec scene; in iterate() local 371 scene.lines.swap(lines); in iterate() 372 scene.lineWidth = m_lineWidth; in iterate() 373 scene.stippleFactor = 1; in iterate() 374 scene.stipplePattern = 0xFFFF; in iterate() 375 scene.allowNonProjectedInterpolation = true; in iterate() 377 compareOk = verifyLineGroupRasterization(resultImage, scene, args, m_testCtx.getLog()); in iterate() [all …]
|