Lines Matching refs:target

668 SingleOperationStatistics calculateSingleOperationStatistics (const std::vector<T>& samples, deUint64 T::SampleType::*target)
674 values[ndx] = samples[ndx].duration.*target;
909 static LineParametersWithConfidence fitLineToSamples (const std::vector<UploadSampleResult<DurationType> >& samples, int beginNdx, int endNdx, int step, deUint64 DurationType::*target = &DurationType::fitResponseDuration)
918 point.y() = (float)(samples[sampleNdx].duration.*target);
927 static LineParametersWithConfidence fitLineToSamples (const std::vector<RenderSampleResult<DurationType> >& samples, int beginNdx, int endNdx, int step, deUint64 DurationType::*target = &DurationType::fitResponseDuration)
936 point.y() = (float)(samples[sampleNdx].duration.*target);
945 static LineParametersWithConfidence fitLineToSamples (const std::vector<T>& samples, int beginNdx, int endNdx, deUint64 T::SampleType::*target = &T::SampleType::fitResponseDuration)
947 return fitLineToSamples(samples, beginNdx, endNdx, 1, target);
951 static LineParametersWithConfidence fitLineToSamples (const std::vector<T>& samples, deUint64 T::SampleType::*target = &T::SampleType::fitResponseDuration)
953 return fitLineToSamples(samples, 0, (int)samples.size(), target);
1972 // \note Viewport size is not checked, it won't matter if the render target actually is smaller than UNUSED_RENDER_AREA_SIZE
3423 m_testCtx.getLog() << tcu::TestLog::Message << "Testing performance of BufferData() command after a draw command that sources data from the target buffer." << tcu::TestLog::EndMessage;
3526 m_testCtx.getLog() << tcu::TestLog::Message << "Testing performance of BufferSubData() command after a draw command that sources data from the target buffer." << tcu::TestLog::EndMessage;
3615 << "Testing performance of MapBufferRange() command after a draw command that sources data from the target buffer.\n"
3732 << "Testing performance of MapBufferRange() command after a draw command that sources data from the target buffer.\n"
4088 throw tcu::NotSupportedError("Test case requires " + de::toString<int>(RENDER_AREA_SIZE) + "x" + de::toString<int>(RENDER_AREA_SIZE) + " render target");
4795 << " command. Usage of the target buffer is DYNAMIC_DRAW.\n"
4846 // target should be an exisiting buffer? Draw from it once to make sure it exists on the gpu
4859 // hint that the target buffer will be modified soon
4910 glw::GLenum target;
4917 target = GL_ARRAY_BUFFER;
4923 target = GL_ELEMENT_ARRAY_BUFFER;
4931 target = GL_ARRAY_BUFFER;
4941 target = GL_ELEMENT_ARRAY_BUFFER;
4955 gl.bufferData(target, size, source, GL_DYNAMIC_DRAW);
4960 gl.bufferData(target, size, DE_NULL, GL_DYNAMIC_DRAW);
4961 gl.bufferSubData(target, offset, size, source);
4970 gl.bufferData(target, size, DE_NULL, GL_DYNAMIC_DRAW);
4972 mapPtr = gl.mapBufferRange(target, offset, size, GL_MAP_WRITE_BIT | GL_MAP_INVALIDATE_RANGE_BIT | GL_MAP_INVALIDATE_BUFFER_BIT | GL_MAP_UNSYNCHRONIZED_BIT);
4979 unmapSuccessful = gl.unmapBuffer(target);
5250 glw::GLenum target;
5257 target = GL_ARRAY_BUFFER;
5263 target = GL_ELEMENT_ARRAY_BUFFER;
5269 target = GL_ARRAY_BUFFER;
5277 target = GL_ELEMENT_ARRAY_BUFFER;
5290 gl.bindBuffer(target, *alternativeUploadBuffer);
5295 gl.bufferData(target, size, source, GL_STREAM_DRAW);
5297 gl.bufferSubData(target, offset, size, source);
5306 mapPtr = gl.mapBufferRange(target, offset, size, mapFlags);
5313 unmapSuccessful = gl.unmapBuffer(target);
5405 int findStabilizationSample (deUint64 Result::*target, const char* description);
5406 bool checkSampleTemporalStability (deUint64 Result::*target, const char* description);
5474 throw tcu::NotSupportedError("Test case requires " + de::toString<int>(RENDER_AREA_SIZE) + "x" + de::toString<int>(RENDER_AREA_SIZE) + " render target");
5695 glw::GLenum target;
5705 target = GL_ARRAY_BUFFER;
5713 target = GL_ELEMENT_ARRAY_BUFFER;
5743 gl.bufferData(target, size, DE_NULL, GL_STATIC_DRAW);
5763 gl.bufferData(target, size, source, GL_STATIC_DRAW);
5765 gl.bufferSubData(target, 0, size, source);
5771 mapPtr = gl.mapBufferRange(target, 0, size, GL_MAP_WRITE_BIT | GL_MAP_INVALIDATE_BUFFER_BIT | GL_MAP_UNSYNCHRONIZED_BIT);
5778 unmapSuccessful = gl.unmapBuffer(target);
6075 int UploadWaitDrawCase::findStabilizationSample (deUint64 UploadWaitDrawCase::Result::*target, const char* description)
6093 sampleObservations[swapNdx][insertNdx++] = m_results[ndx].*target;
6149 bool UploadWaitDrawCase::checkSampleTemporalStability (deUint64 UploadWaitDrawCase::Result::*target, const char* description)
6160 dataPoints[m_iterationOrder[ndx]].y() = (float)(m_results[m_iterationOrder[ndx]].*target);