MCPcopy Create free account
hub / github.com/defold/defold / OutputSampler

Function OutputSampler

engine/modelc/src/modelimporter_debug.cpp:198–207  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196}
197
198static void OutputSampler(Sampler* sampler, int indent)
199{
200 OutputIndent(indent);
201 printf("Sampler %d: %s \n", sampler->m_Index, sampler->m_Name);
202
203 OutputValue("mag_filter", sampler->m_MagFilter, indent+1);
204 OutputValue("min_filter", sampler->m_MinFilter, indent+1);
205 OutputValue("wrap_s", sampler->m_WrapS, indent+1);
206 OutputValue("wrap_t", sampler->m_WrapT, indent+1);
207}
208
209static void OutputTextureTransform(TextureTransform* p, int indent)
210{

Callers 1

DebugSceneFunction · 0.85

Calls 2

OutputIndentFunction · 0.85
OutputValueFunction · 0.85

Tested by

no test coverage detected