/third_party/vk-gl-cts/external/amber/src/src/ |
D | pipeline_data.h | 45 void SetPolygonMode(PolygonMode mode) { polygon_mode_ = mode; } in SetPolygonMode() 46 PolygonMode GetPolygonMode() const { return polygon_mode_; } in GetPolygonMode() 198 PolygonMode polygon_mode_ = PolygonMode::kFill;
|
D | command_data.h | 38 enum class PolygonMode : uint8_t { enum
|
/third_party/skia/third_party/externals/opengl-registry/extensions/NV/ |
D | NV_fill_rectangle.txt | 43 This extension adds a new PolygonMode setting where a triangle is 65 void PolygonMode(enum face, enum mode); 71 FILL, or FILL_RECTANGLE_NV. Calling PolygonMode with POINT causes certain 102 Polygon antialiasing applies only to the FILL state of PolygonMode. Polygon 146 and POLYGON_OFFSET_LINE. References to PolygonMode should be considered
|
D | NV_polygon_mode.txt | 47 This introduces a level of support for PolygonMode comparable with the 148 In NV_draw_texture, change references to PolygonMode to PolygonModeNV, and 149 disregard the interaction ignoring PolygonMode for ES.
|
D | NV_conservative_raster.txt | 141 CULL_FACE, POLYGON_SMOOTH, POLYGON_OFFSET_FILL enables, or PolygonMode 153 references to PolygonMode are ignored.
|
D | NV_draw_texture.txt | 128 POLYGON_SMOOTH, and POLYGON_OFFSET_FILL enables and PolygonMode state have 222 * Ignore references to POLYGON_SMOOTH and PolygonMode.
|
D | NV_draw_vulkan_image.txt | 216 POLYGON_SMOOTH, and POLYGON_OFFSET_FILL enables and PolygonMode state have
|
/third_party/openGLES/extensions/NV/ |
D | NV_fill_rectangle.txt | 43 This extension adds a new PolygonMode setting where a triangle is 65 void PolygonMode(enum face, enum mode); 71 FILL, or FILL_RECTANGLE_NV. Calling PolygonMode with POINT causes certain 102 Polygon antialiasing applies only to the FILL state of PolygonMode. Polygon 146 and POLYGON_OFFSET_LINE. References to PolygonMode should be considered
|
D | NV_polygon_mode.txt | 47 This introduces a level of support for PolygonMode comparable with the 148 In NV_draw_texture, change references to PolygonMode to PolygonModeNV, and 149 disregard the interaction ignoring PolygonMode for ES.
|
D | NV_conservative_raster.txt | 141 CULL_FACE, POLYGON_SMOOTH, POLYGON_OFFSET_FILL enables, or PolygonMode 153 references to PolygonMode are ignored.
|
D | NV_draw_texture.txt | 128 POLYGON_SMOOTH, and POLYGON_OFFSET_FILL enables and PolygonMode state have 222 * Ignore references to POLYGON_SMOOTH and PolygonMode.
|
D | NV_draw_vulkan_image.txt | 216 POLYGON_SMOOTH, and POLYGON_OFFSET_FILL enables and PolygonMode state have
|
/third_party/vk-gl-cts/external/amber/src/src/amberscript/ |
D | parser_pipeline_test.cc | 285 ASSERT_EQ(mode0, PolygonMode::kFill); in TEST_F() 287 ASSERT_EQ(mode1, PolygonMode::kFill); in TEST_F() 289 ASSERT_EQ(mode2, PolygonMode::kLine); in TEST_F() 291 ASSERT_EQ(mode3, PolygonMode::kPoint); in TEST_F()
|
/third_party/vk-gl-cts/external/amber/src/src/vulkan/ |
D | graphics_pipeline.cc | 125 VkPolygonMode ToVkPolygonMode(PolygonMode mode) { in ToVkPolygonMode() 127 case PolygonMode::kFill: in ToVkPolygonMode() 129 case PolygonMode::kLine: in ToVkPolygonMode() 131 case PolygonMode::kPoint: in ToVkPolygonMode()
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/capture/ |
D | gl_enum_utils_autogen.h | 155 PolygonMode, enumerator
|
/third_party/vk-gl-cts/external/amber/src/src/vkscript/ |
D | command_parser.cc | 1125 PolygonMode mode = PolygonMode::kFill; in ProcessPolygonMode() 1128 mode = PolygonMode::kFill; in ProcessPolygonMode() 1130 mode = PolygonMode::kLine; in ProcessPolygonMode() 1132 mode = PolygonMode::kPoint; in ProcessPolygonMode()
|
/third_party/openGLES/extensions/EXT/ |
D | EXT_polygon_offset.txt | 62 by calling PolygonMode) is FILL. The GL Specification requires that
|
/third_party/skia/third_party/externals/opengl-registry/extensions/EXT/ |
D | EXT_polygon_offset.txt | 62 by calling PolygonMode) is FILL. The GL Specification requires that
|
/third_party/skia/third_party/externals/imgui/backends/ |
D | imgui_impl_opengl3_loader.h | 482 PFNGLPOLYGONMODEPROC PolygonMode; member 541 #define glPolygonMode imgl3wProcs.gl.PolygonMode
|
/third_party/skia/src/gpu/gl/ |
D | GrGLAssembleGLInterfaceAutogen.cpp | 151 GET_PROC(PolygonMode); in GrGLMakeAssembledGLInterface()
|
/third_party/openGLES/extensions/ARB/ |
D | ARB_point_sprite.txt | 181 * How does this extension interact with PolygonMode? 408 interaction with PolygonMode, clipping, and
|
/third_party/skia/third_party/externals/opengl-registry/extensions/ARB/ |
D | ARB_point_sprite.txt | 171 * How does this extension interact with PolygonMode? 398 interaction with PolygonMode, clipping, and
|
/third_party/openGLES/extensions/INTEL/ |
D | INTEL_conservative_rasterization.txt | 112 PolygonMode state set to FILL. Draw requests for polygons with different 113 PolygonMode setting or for other primitive types (points/lines) generate
|
/third_party/skia/third_party/externals/opengl-registry/extensions/INTEL/ |
D | INTEL_conservative_rasterization.txt | 112 PolygonMode state set to FILL. Draw requests for polygons with different 113 PolygonMode setting or for other primitive types (points/lines) generate
|
/third_party/skia/third_party/externals/swiftshader/tests/VulkanWrapper/ |
D | DrawTester.cpp | 235 rasterizationState.polygonMode = vk::PolygonMode::eFill; in createGraphicsPipeline()
|