HomeSort by relevance Sort by last modified time
    Searched refs:UVec2 (Results 1 - 25 of 42) sorted by null

1 2

  /external/deqp/external/vulkancts/framework/vulkan/
vkWsiPlatform.cpp 31 void Window::resize (const tcu::UVec2&)
vkWsiPlatform.hpp 40 virtual void resize (const tcu::UVec2& newSize);
55 virtual Window* createWindow (const tcu::Maybe<tcu::UVec2>& initialSize = tcu::nothing<tcu::UVec2>()) const = 0;
  /external/deqp/framework/common/
tcuVectorType.hpp 49 typedef Vector<deUint32, 2> UVec2;
  /external/deqp/external/vulkancts/modules/vulkan/
vktRenderPassTests.cpp 64 using tcu::UVec2;
617 const UVec2& targetSize_,
618 const UVec2& renderPos_,
619 const UVec2& renderSize_,
636 UVec2 targetSize;
637 UVec2 renderPos;
638 UVec2 renderSize;
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineImageSamplingInstance.hpp 45 const tcu::UVec2& renderSize,
80 const tcu::UVec2 m_renderSize;
vktPipelineImageViewTests.cpp 69 static tcu::UVec2 getRenderSize (VkImageViewType viewType);
197 const tcu::UVec2 renderSize = getRenderSize(m_imageViewType);
274 tcu::UVec2 ImageViewTest::getRenderSize (VkImageViewType viewType)
277 return tcu::UVec2(16u, 16u);
279 return tcu::UVec2(16u * 3u, 16u * 2u);
vktPipelineSamplerTests.cpp 66 virtual tcu::UVec2 getRenderSize (VkImageViewType viewType) const;
151 virtual tcu::UVec2 getRenderSize (VkImageViewType viewType) const;
252 const tcu::UVec2 renderSize = getRenderSize(m_imageViewType);
274 tcu::UVec2 SamplerTest::getRenderSize (VkImageViewType viewType) const
278 return tcu::UVec2(16u, 16u);
282 return tcu::UVec2(16u * 3u, 16u * 2u);
508 tcu::UVec2 SamplerAddressModesTest::getRenderSize (VkImageViewType viewType) const
    [all...]
vktPipelineImageTests.cpp 152 tcu::UVec2 renderSize;
156 renderSize = tcu::UVec2((deUint32)m_imageSize.x(), (deUint32)m_imageSize.y());
161 renderSize = tcu::UVec2((deUint32)m_imageSize.x() * 3, (deUint32)m_imageSize.y() * 2);
vktPipelineImageUtil.hpp 76 const tcu::UVec2& renderSize);
vktPipelineTimestampTests.cpp 306 Move<VkPipeline> buildPipeline (tcu::UVec2 renderSize,
368 Move<VkPipeline> SimpleGraphicsPipelineBuilder::buildPipeline(tcu::UVec2 renderSize, VkRenderPass renderPass)
    [all...]
vktPipelineCacheTests.cpp 164 Move<VkPipeline> buildPipeline (tcu::UVec2 renderSize,
222 Move<VkPipeline> SimpleGraphicsPipelineBuilder::buildPipeline (tcu::UVec2 renderSize, VkRenderPass renderPass, VkPipelineCache cache)
    [all...]
vktPipelineInputAssemblyTests.cpp 162 const tcu::UVec2 m_renderSize;
919 , m_renderSize ((primitiveTopology == VK_PRIMITIVE_TOPOLOGY_TRIANGLE_FAN) ? tcu::UVec2(32, 32) : tcu::UVec2(64, 16))
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiSurfaceTests.cpp 79 using tcu::UVec2;
158 MovePtr<Window> createWindow (const Display& display, const Maybe<UVec2>& initialSize)
180 const Maybe<UVec2>& initialWindowSize = tcu::nothing<UVec2>())
513 const UVec2 sizes[] =
515 UVec2(64, 64),
516 UVec2(124, 119),
517 UVec2(256, 512)
524 const UVec2& testSize = sizes[sizeNdx];
555 UniquePtr<Window> nativeWindow (createWindow(*nativeDisplay, tcu::nothing<UVec2>()));
    [all...]
vktWsiSwapchainTests.cpp 68 using tcu::UVec2;
258 MovePtr<Window> createWindow (const Display& display, const Maybe<UVec2>& initialSize)
280 const Maybe<UVec2>& initialWindowSize = tcu::nothing<UVec2>())
712 const tcu::UVec2& desiredSize,
761 const UVec2& renderSize);
781 const UVec2& renderSize);
791 const UVec2& renderSize);
801 const tcu::UVec2 m_renderSize;
915 const UVec2& renderSize
    [all...]
  /external/deqp/framework/platform/win32/
tcuWin32VulkanPlatform.cpp 60 void resize (const UVec2& newSize)
77 vk::wsi::Window* createWindow (const Maybe<UVec2>& initialSize) const
  /external/deqp/modules/gles3/functional/
es3fShaderPrecisionTests.cpp 651 ShaderUintPrecisionCase (Context& context, const char* name, const char* desc, const char* op, EvalFunc evalFunc, glu::Precision precision, int bits, const tcu::UVec2& rangeA, const tcu::UVec2& rangeB, bool isVertexCase);
667 tcu::UVec2 m_rangeA;
668 tcu::UVec2 m_rangeB;
682 ShaderUintPrecisionCase::ShaderUintPrecisionCase (Context& context, const char* name, const char* desc, const char* op, EvalFunc evalFunc, glu::Precision precision, int bits, const tcu::UVec2& rangeA, const tcu::UVec2& rangeB, bool isVertexCase)
856 using tcu::UVec2;
868 tcu::UVec2 fullRange32U (0u, 0xffffffffu);
869 tcu::UVec2 fullRange16U (0u, 0xffffu);
870 tcu::UVec2 fullRange8U (0u, 0xffu)
    [all...]
es3fFragmentOutputTests.cpp 59 using tcu::UVec2;
366 static UVec2 getUintRange (glu::Precision precision)
368 static const UVec2 ranges[] =
370 UVec2(0, (1<< 8)-1),
371 UVec2(0, (1<<16)-1),
372 UVec2(0, 0xffffffffu)
721 const UVec2 range = getUintRange(output.precision);
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRender.hpp 401 const tcu::UVec2 getViewportSize (void) const;
445 const tcu::UVec2 m_renderSize;
vktShaderRender.cpp 484 const tcu::UVec2 viewportSize = getViewportSize();
740 const tcu::UVec2 ShaderRenderCaseInstance::getViewportSize (void) const
742 return tcu::UVec2(de::min(m_renderSize.x(), MAX_RENDER_WIDTH),
    [all...]
  /external/deqp/framework/platform/android/
tcuAndroidPlatform.cpp 237 vk::wsi::Window* createWindow (const Maybe<UVec2>& initialSize) const
  /external/deqp/modules/gles3/scripts/
genutil.py 220 def toUVec2(self): return UVec2(self.x, self.x)
387 def toUVec2(self): return UVec2(self.x, self.y)
394 def toUint(self): return UVec2(int(self.x), int(self.y))
468 class UVec2(Vec2):
475 return "uvec2"
478 return "uvec2(%i, %i)" % (self.x, self.y)
498 def toUVec2(self): return UVec2(self.x, self.y)
617 def toUVec2(self): return UVec2(self.x, self.y)
  /external/deqp/modules/gles31/scripts/
genutil.py 220 def toUVec2(self): return UVec2(self.x, self.x)
389 def toUVec2(self): return UVec2(self.x, self.y)
396 def toUint(self): return UVec2(int(self.x), int(self.y))
470 class UVec2(Vec2):
477 return "uvec2"
480 return "uvec2(%i, %i)" % (self.x, self.y)
500 def toUVec2(self): return UVec2(self.x, self.y)
619 def toUVec2(self): return UVec2(self.x, self.y)
gen-implicit-conversions.py 29 from genutil import Scalar, Vec2, Vec3, Vec4, Uint, UVec2, UVec3, UVec4, CaseGroup
236 "uvec2": [Vec2(x[0], x[1]) for x in IN_UVECTOR],
250 "ivec2": ["uvec2", "vec2"],
251 "uvec2": ["vec2"],
259 "int": ["vec2", "vec3", "vec4", "uvec2", "uvec3", "uvec4"],
265 "uint": ["uvec2", "uvec3", "uvec4"],
269 "uvec2": ["uint", "float"],
280 "ivec2", "uvec2", "ivec3",
291 return name in ["vec2", "ivec2", "uvec2"]
311 return type_name in ["uint", "uvec2", "uvec3", "uvec4"
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/compute/
vktComputeShaderBuiltinVarTests.cpp 204 << " uvec2 u_stride;\n"
388 const tcu::UVec2 stride (globalSize[0] * globalSize[1], globalSize[0]);
400 resultBufferStride = sizeof(tcu::UVec2);
  /external/deqp/external/vulkancts/modules/vulkan/binding_model/
vktBindingShaderAccessTests.cpp 273 const tcu::UVec2& size);
280 const tcu::UVec2& size,
296 const tcu::UVec2& size);
311 const tcu::UVec2 m_targetSize;
329 const tcu::UVec2& size)
352 const tcu::UVec2& size,
466 const tcu::UVec2& size)
816 const tcu::UVec2& renderSize);
831 const tcu::UVec2& renderSize)
    [all...]

Completed in 770 milliseconds

1 2