Layout              7 apps/opengl_demo/layout.cpp using namespace Layout;
Layout             14 apps/opengl_demo/layout.cpp const struct info &Layout::setup(int image_width, int image_height)
Layout             22 apps/opengl_demo/layout.cpp void Layout::draw_texture(enum location location, GLuint texture_id, int width, int height, const std::string &label)
Layout             54 apps/opengl_demo/layout.cpp void Layout::draw_image(enum location location, const uint8_t *data, int width, int height, const std::string &label)
Layout             10 apps/opengl_demo/layout.h namespace Layout {
Layout            132 apps/opengl_demo/main.cpp     const auto layout = Layout::setup(width, height);
Layout            139 apps/opengl_demo/main.cpp     Layout::draw_image(Layout::UL, image.data, width, height, "Input");
Layout            148 apps/opengl_demo/main.cpp     Layout::draw_image(Layout::UR, cpu_result_data, width, height, report);
Layout            157 apps/opengl_demo/main.cpp     Layout::draw_image(Layout::LL, opengl_result_data, width, height, report);
Layout            167 apps/opengl_demo/main.cpp     Layout::draw_texture(Layout::LR, result_texture_id, width, height, report);
Layout             53 apps/templates/tests/example_test.cpp static int run_test(void *uc, int channels, Implementation imp, Layout layout) {
Layout             42 tutorial/lesson_16_rgb_generate.cpp     GeneratorParam<Layout> layout{"layout",
Layout             44 tutorial/lesson_16_rgb_generate.cpp             Layout::Planar,
Layout             46 tutorial/lesson_16_rgb_generate.cpp                 {{ "planar",        Layout::Planar },
Layout             47 tutorial/lesson_16_rgb_generate.cpp                  { "interleaved",   Layout::Interleaved },
Layout             48 tutorial/lesson_16_rgb_generate.cpp                  { "either",        Layout::Either },
Layout             49 tutorial/lesson_16_rgb_generate.cpp                  { "specialized",   Layout::Specialized }}};
Layout             69 tutorial/lesson_16_rgb_generate.cpp         if (layout == Layout::Planar) {
Layout            110 tutorial/lesson_16_rgb_generate.cpp         } else if (layout == Layout::Interleaved) {
Layout            151 tutorial/lesson_16_rgb_generate.cpp         } else if (layout == Layout::Either) {
Layout            162 tutorial/lesson_16_rgb_generate.cpp         } else if (layout == Layout::Specialized) {