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

1 2 3 4

  /external/deqp/framework/referencerenderer/
rrShaders.cpp 30 GeometryShader::GeometryShader (size_t numVaryingInputs, size_t numVaryingOutputs, GeometryShaderInputType inputType, GeometryShaderOutputType outputType, size_t verticesOut, size_t numInvocations)
32 , m_outputType (outputType)
  /external/deqp/modules/gles3/functional/
es3fFboTestUtil.cpp 77 FlatColorShader::FlatColorShader (glu::DataType outputType)
81 << sglr::pdec::FragmentOutput(mapDataTypeToGenericVecType(outputType))
94 "layout(location = 0) out highp ") + glu::getDataTypeName(outputType) + " o_color;\n"
97 " o_color = " + glu::getDataTypeName(outputType) + "(u_color);\n"
99 , m_outputType(outputType)
151 GradientShader::GradientShader (glu::DataType outputType)
156 << sglr::pdec::FragmentOutput(mapDataTypeToGenericVecType(outputType))
175 "layout(location = 0) out highp ") + glu::getDataTypeName(outputType) + " o_color;\n"
183 " o_color = " + glu::getDataTypeName(outputType) + "(u_gradientMin + (u_gradientMax-u_gradientMin)*fv);\n"
185 , m_outputType(outputType)
    [all...]
es3fFboTestUtil.hpp 58 FlatColorShader (glu::DataType outputType);
73 GradientShader (glu::DataType outputType);
88 Texture2DShader (const DataTypes& samplerTypes, glu::DataType outputType, const tcu::Vec4& outScale = tcu::Vec4(1.0f), const tcu::Vec4& outBias = tcu::Vec4(0.0f));
118 TextureCubeShader (glu::DataType samplerType, glu::DataType outputType);
140 Texture2DArrayShader (glu::DataType samplerType, glu::DataType outputType);
162 Texture3DShader (glu::DataType samplerType, glu::DataType outputType);
184 DepthGradientShader (glu::DataType outputType);
es3fDrawTests.cpp 119 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
130 spec.attribs[1].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
197 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
232 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
243 spec.attribs[1].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
278 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
290 spec.attribs[1].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
303 spec.attribs[2].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
338 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
351 gls::DrawTestSpec::OutputType output
    [all...]
  /external/chromium_org/third_party/angle/src/common/
blocklayout.h 111 static HLSLBlockEncoderStrategy GetStrategyFor(ShShaderOutput outputType);
123 unsigned int HLSLVariableRegisterCount(const Uniform &variable, ShShaderOutput outputType);
blocklayout.cpp 199 HLSLBlockEncoder::HLSLBlockEncoderStrategy HLSLBlockEncoder::GetStrategyFor(ShShaderOutput outputType)
201 switch (outputType)
242 unsigned int HLSLVariableRegisterCount(const Uniform &variable, ShShaderOutput outputType)
244 HLSLBlockEncoder encoder(HLSLBlockEncoder::GetStrategyFor(outputType));
  /external/deqp/modules/glshared/
glsDrawTest.hpp 76 enum OutputType
177 static std::string outputTypeToString (OutputType type);
188 static AttributeSpec createAttributeArray (InputType inputType, OutputType outputType, Storage storage, Usage usage, int componentCount, int offset, int stride, bool normalize, int instanceDivisor);
189 static AttributeSpec createDefaultAttribute (InputType inputType, OutputType outputType, int componentCount); //!< allowed inputType values: INPUTTYPE_INT, INPUTTYPE_UNSIGNED_INT, INPUTTYPE_FLOAT
192 OutputType outputType;
glsDrawTest.cpp 139 static std::string outputTypeToGLType (DrawTestSpec::OutputType type)
213 static bool outputTypeIsFloatType (DrawTestSpec::OutputType type)
224 static bool outputTypeIsIntType (DrawTestSpec::OutputType type)
235 static bool outputTypeIsUintType (DrawTestSpec::OutputType type)
319 if (outputTypeIsFloatType(a.attribs[ndx].outputType) && outputTypeIsFloatType(b.attribs[ndx].outputType))
321 if (outputTypeIsIntType(a.attribs[ndx].outputType) && outputTypeIsIntType(b.attribs[ndx].outputType))
323 if (outputTypeIsUintType(a.attribs[ndx].outputType) && outputTypeIsUintType(b.attribs[ndx].outputType))
    [all...]
  /frameworks/av/include/drm/
drm_framework_common.h 88 outputType(_outputType),
93 int outputType; /* BLUETOOTH , HDMI*/
  /external/chromium_org/third_party/angle/src/compiler/translator/
UniformHLSL.h 26 TString uniformsHeader(ShShaderOutput outputType, const ReferencedSymbols &referencedUniforms);
Compiler.h 83 ShShaderOutput getOutputType() const { return outputType; }
150 ShShaderOutput outputType;
UniformHLSL.cpp 120 TString UniformHLSL::uniformsHeader(ShShaderOutput outputType, const ReferencedSymbols &referencedUniforms)
133 if (outputType == SH_HLSL11_OUTPUT && IsSampler(type.getBasicType())) // Also declare the texture
  /external/deqp/modules/gles31/functional/
es31fFboTestUtil.cpp 77 static string genTexFragmentShader (const vector<glu::DataType>& samplerTypes, glu::DataType outputType)
83 << "layout(location = 0) out highp " << glu::getDataTypeName(outputType) << " o_color0;\n";
109 src << " o_color0 = " << glu::getDataTypeName(outputType) << "(out0 * u_outScale0 + u_outBias0);\n";
116 static sglr::pdec::ShaderProgramDeclaration genTexture2DShaderDecl (const DataTypes& samplerTypes, glu::DataType outputType)
123 decl << sglr::pdec::FragmentOutput(mapDataTypeToGenericVecType(outputType));
135 decl << sglr::pdec::FragmentSource(genTexFragmentShader(samplerTypes.vec, outputType));
150 Texture2DShader::Texture2DShader (const DataTypes& samplerTypes, glu::DataType outputType, const Vec4& outScale, const Vec4& outBias)
151 : sglr::ShaderProgram (genTexture2DShaderDecl(samplerTypes, outputType))
154 , m_outputType (outputType)
265 TextureCubeArrayShader::TextureCubeArrayShader (glu::DataType samplerType, glu::DataType outputType)
    [all...]
es31fFboTestUtil.hpp 58 Texture2DShader (const DataTypes& samplerTypes, glu::DataType outputType, const tcu::Vec4& outScale = tcu::Vec4(1.0f), const tcu::Vec4& outBias = tcu::Vec4(0.0f));
88 TextureCubeArrayShader (glu::DataType samplerType, glu::DataType outputType);
  /frameworks/base/location/java/android/location/
Location.java 170 * Converts a coordinate to a String representation. The outputType
176 * @throws IllegalArgumentException if outputType is not one of
179 public static String convert(double coordinate, int outputType) {
184 if ((outputType != FORMAT_DEGREES) &&
185 (outputType != FORMAT_MINUTES) &&
186 (outputType != FORMAT_SECONDS)) {
187 throw new IllegalArgumentException("outputType=" + outputType);
199 if (outputType == FORMAT_MINUTES || outputType == FORMAT_SECONDS)
    [all...]
  /external/deqp/framework/opengl/simplereference/
sglrShaderProgram.cpp 116 m_geometryDecl.outputType == rr::GEOMETRYSHADEROUTPUTTYPE_LAST)
122 m_geometryDecl.outputType != rr::GEOMETRYSHADEROUTPUTTYPE_LAST ||
138 decl.m_geometryDecl.outputType,
sglrShaderProgram.hpp 132 , outputType (outputType_)
139 rr::GeometryShaderOutputType outputType;
  /external/deqp/modules/gles2/functional/
es2fDrawTests.cpp 88 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
99 spec.attribs[1].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
161 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
196 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
207 spec.attribs[1].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
242 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
255 gls::DrawTestSpec::OutputType output;
268 spec.attribs[1].outputType = iopairs[ioNdx].output;
567 static const gls::DrawTestSpec::OutputType outputTypes[] =
621 attribSpec.outputType = random.chooseWeighted<gls::DrawTestSpec::OutputType> (DE_ARRAY_BEGIN(outputTypes), DE_ARRAY_E (…)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ucnvmbcs.c 120 * use the special outputType MBCS_OUTPUT_EXT_ONLY.
736 if(mbcsTable->outputType==MBCS_OUTPUT_1) {
788 switch(mbcsTable->outputType) {
    [all...]
ucnv_bld.cpp     [all...]
  /external/icu/icu4c/source/common/
ucnvmbcs.c 120 * use the special outputType MBCS_OUTPUT_EXT_ONLY.
736 if(mbcsTable->outputType==MBCS_OUTPUT_1) {
788 switch(mbcsTable->outputType) {
    [all...]
ucnv_bld.cpp     [all...]
  /external/deqp/modules/gles2/stress/
es2sDrawTests.cpp 61 spec.attribs[0].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
72 spec.attribs[1].outputType = gls::DrawTestSpec::OUTPUTTYPE_VEC2;
290 gls::DrawTestSpec::OutputType outputTypes[] =
344 attribSpec.outputType = random.chooseWeighted<gls::DrawTestSpec::OutputType> (DE_ARRAY_BEGIN(outputTypes), DE_ARRAY_END(outputTypes), outputTypeWeights.weights);
386 if (spec.attribs[0].outputType == gls::DrawTestSpec::OUTPUTTYPE_FLOAT || spec.attribs[0].outputType == gls::DrawTestSpec::OUTPUTTYPE_INT || spec.attribs[0].outputType == gls::DrawTestSpec::OUTPUTTYPE_UINT)
  /pdk/apps/TestingCamera2/src/com/android/testingcamera2/
TargetControlPane.java 235 OutputViewType outputType =
237 mCurrentOutput = createOutputView(outputType);
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/
ShaderD3D.cpp 390 size_t outputType = 0;
391 ShGetInfo(compiler, SH_OUTPUT_TYPE, &outputType);
393 return static_cast<ShShaderOutput>(outputType);

Completed in 1528 milliseconds

1 2 3 4