OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:computeLodFromDerivates
(Results
1 - 5
of
5
) sorted by null
/external/deqp/framework/opengl/
gluTextureTestUtil.hpp
169
float
computeLodFromDerivates
(LodMode mode, float dudx, float dudy);
170
float
computeLodFromDerivates
(LodMode mode, float dudx, float dvdx, float dudy, float dvdy);
171
float
computeLodFromDerivates
(LodMode mode, float dudx, float dvdx, float dwdx, float dudy, float dvdy, float dwdy);
gluTextureTestUtil.cpp
179
float
computeLodFromDerivates
(LodMode mode, float dudx, float dudy)
205
return
computeLodFromDerivates
(mode, dux/dx, duy/dy);
210
float
computeLodFromDerivates
(LodMode mode, float dudx, float dvdx, float dudy, float dvdy)
245
return
computeLodFromDerivates
(mode, dux/dx, dvx/dx, duy/dy, dvy/dy);
250
float
computeLodFromDerivates
(LodMode mode, float dudx, float dvdx, float dwdx, float dudy, float dvdy, float dwdy)
288
return
computeLodFromDerivates
(mode, dux/dx, dvx/dx, dwx/dx, duy/dy, dvy/dy, dwy/dy);
315
return
computeLodFromDerivates
(mode, dudx, dudy);
327
return
computeLodFromDerivates
(mode, dudx, dvdx, dudy, dvdy);
341
return
computeLodFromDerivates
(mode, dudx, dvdx, dwdx, dudy, dvdy, dwdy);
606
return
computeLodFromDerivates
(lodMode, dudx, dvdx, dudy, dvdy)
[
all
...]
/external/deqp/modules/gles2/functional/
es2fShaderTextureFunctionTests.cpp
354
m_lookupParams.lod = glu::TextureTestUtil::
computeLodFromDerivates
(glu::TextureTestUtil::LODMODE_EXACT, dudx, 0.0f, 0.0f, dvdy);
400
m_lookupParams.lod = glu::TextureTestUtil::
computeLodFromDerivates
(glu::TextureTestUtil::LODMODE_EXACT, dudx, 0.0f, 0.0f, dvdy);
/external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderTextureFunctionTests.cpp
257
// \note LodMode and
computeLodFromDerivates
functions are copied from glsTextureTestUtil
272
float
computeLodFromDerivates
(LodMode mode, float dudx, float dudy)
293
float
computeLodFromDerivates
(LodMode mode, float dudx, float dvdx, float dudy, float dvdy)
321
float
computeLodFromDerivates
(LodMode mode, float dudx, float dvdx, float dwdx, float dudy, float dvdy, float dwdy)
358
return
computeLodFromDerivates
(DEFAULT_LOD_MODE, c.in[1].x()*w, c.in[1].y()*h, c.in[2].x()*w, c.in[2].y()*h);
365
return
computeLodFromDerivates
(DEFAULT_LOD_MODE, c.in[1].x()*w, c.in[1].y()*h, c.in[2].x()*w, c.in[2].y()*h);
373
return
computeLodFromDerivates
(DEFAULT_LOD_MODE, c.in[1].x()*w, c.in[1].y()*h, c.in[1].z()*d, c.in[2].x()*w, c.in[2].y()*h, c.in[2].z()*d);
383
return
computeLodFromDerivates
(DEFAULT_LOD_MODE, c.in[1].x()*s, c.in[1].y()*t, c.in[2].x()*s, c.in[2].y()*t);
389
return
computeLodFromDerivates
(DEFAULT_LOD_MODE, c.in[1].x()*w, c.in[2].x()*w);
395
return
computeLodFromDerivates
(DEFAULT_LOD_MODE, c.in[1].x()*w, c.in[2].x()*w)
[
all
...]
/external/deqp/modules/gles3/functional/
es3fShaderTextureFunctionTests.cpp
54
using glu::TextureTestUtil::
computeLodFromDerivates
;
249
return
computeLodFromDerivates
(DEFAULT_LOD_MODE, c.in[1].x()*w, c.in[1].y()*h, c.in[2].x()*w, c.in[2].y()*h);
256
return
computeLodFromDerivates
(DEFAULT_LOD_MODE, c.in[1].x()*w, c.in[1].y()*h, c.in[2].x()*w, c.in[2].y()*h);
264
return
computeLodFromDerivates
(DEFAULT_LOD_MODE, c.in[1].x()*w, c.in[1].y()*h, c.in[1].z()*d, c.in[2].x()*w, c.in[2].y()*h, c.in[2].z()*d);
274
return
computeLodFromDerivates
(DEFAULT_LOD_MODE, c.in[1].x()*s, c.in[1].y()*t, c.in[2].x()*s, c.in[2].y()*t);
600
m_lookupParams.lod =
computeLodFromDerivates
(DEFAULT_LOD_MODE, dudx, 0.0f, 0.0f, dvdy);
[
all
...]
Completed in 182 milliseconds