Home
last modified time | relevance | path

Searched refs:m_colors (Results 1 – 9 of 9) sorted by relevance

/external/deqp/modules/gles3/functional/
Des3fShaderBuiltinVarTests.cpp736 vector<tcu::Vec4> m_colors; member in deqp::gles3::Functional::VertexIDCase
816 m_colors.resize(numVertices); in init()
817 m_colors[ 0] = tcu::Vec4(0.0f, 0.0f, 0.0f, 1.0f); in init()
818 m_colors[ 1] = tcu::Vec4(0.5f, 1.0f, 0.5f, 1.0f); in init()
819 m_colors[ 2] = tcu::Vec4(0.0f, 0.5f, 1.0f, 1.0f); in init()
820 m_colors[ 3] = tcu::Vec4(0.0f, 1.0f, 0.0f, 1.0f); in init()
821 m_colors[ 4] = tcu::Vec4(0.0f, 1.0f, 1.0f, 1.0f); in init()
822 m_colors[ 5] = tcu::Vec4(0.5f, 0.0f, 0.0f, 1.0f); in init()
823 m_colors[ 6] = tcu::Vec4(0.5f, 0.0f, 1.0f, 1.0f); in init()
824 m_colors[ 7] = tcu::Vec4(0.5f, 0.0f, 0.5f, 1.0f); in init()
[all …]
/external/skqp/third_party/gif/
DSkGifImageReader.h156 , m_colors(0) in SkGIFColorMap()
163 SkASSERT(!m_colors); in setNumColors()
166 m_colors = colors; in setNumColors()
176 int numColors() const { return m_colors; } in numColors()
187 int m_colors; variable
DSkGifImageReader.cpp333 const size_t bytes = m_colors * SK_BYTES_PER_COLORMAP_ENTRY; in buildTable()
339 SkASSERT(m_colors <= SK_MAX_COLORS); in buildTable()
342 for (int i = 0; i < m_colors; i++) { in buildTable()
350 for (int i = m_colors; i < SK_MAX_COLORS; i++) { in buildTable()
/external/skia/third_party/libgifcodec/
DSkGifImageReader.h158 , m_colors(0) in SkGIFColorMap()
165 SkASSERT(!m_colors); in setNumColors()
168 m_colors = colors; in setNumColors()
178 int numColors() const { return m_colors; } in numColors()
189 int m_colors; variable
DSkGifImageReader.cpp363 const size_t bytes = m_colors * SK_BYTES_PER_COLORMAP_ENTRY; in buildTable()
369 SkASSERT(m_colors <= SK_MAX_COLORS); in buildTable()
372 for (int i = 0; i < m_colors; i++) { in buildTable()
380 for (int i = m_colors; i < SK_MAX_COLORS; i++) { in buildTable()
/external/llvm-project/clang/test/SemaTemplate/
Dinstantiate-invalid.cpp37 const ColorT& color(unsigned i) const { return *m_colors[i]; }
/external/clang/test/SemaTemplate/
Dinstantiate-invalid.cpp37 const ColorT& color(unsigned i) const { return *m_colors[i]; }
/external/deqp/external/vulkancts/modules/vulkan/draw/
DvktDrawShaderViewportIndexTests.cpp665 , m_colors (colors) in Renderer()
738 const auto colorsBufferSize = m_colors.size() * sizeof(decltype(m_colors)::value_type); in draw()
744 deMemcpy(colorsBufferAlloc.getHostPtr(), m_colors.data(), colorsBufferSize); in draw()
779 const std::vector<Vec4> m_colors; member in vkt::Draw::__anon209b09080111::Renderer
/external/deqp/external/openglcts/modules/common/
DglcBlendEquationAdvancedTests.cpp798 , m_colors(colors) in BlendTest()
815 const glw::GLfloat* m_colors; member in glcts::BlendTestCaseGroup::BlendTest
959 const glw::GLfloat* s = (m_useRGB10A2Data ? m_specificColors : m_colors) + 8 * index; in getTestColors()