Home
last modified time | relevance | path

Searched refs:program (Results 1 – 25 of 153) sorted by relevance

1234567

/AliOS-Things-master/components/SDL2/src/render/opengl/
A DSDL_shaders_gl.c36 GLhandleARB program; member
407 data->program = ctx->glCreateProgramObjectARB(); in CompileShaderProgram()
422 ctx->glAttachObjectARB(data->program, data->vert_shader); in CompileShaderProgram()
423 ctx->glAttachObjectARB(data->program, data->frag_shader); in CompileShaderProgram()
424 ctx->glLinkProgramARB(data->program); in CompileShaderProgram()
427 ctx->glUseProgramObjectARB(data->program); in CompileShaderProgram()
431 location = ctx->glGetUniformLocationARB(data->program, tex_name); in CompileShaderProgram()
446 ctx->glDeleteObjectARB(data->program); in DestroyShaderProgram()
525 ctx->glUseProgramObjectARB(ctx->shaders[shader].program); in GL_SelectShader()
/AliOS-Things-master/components/SDL2/include/
A DSDL_opengles2_gl2ext.h1599 GL_APICALL void GL_APIENTRY glActiveShaderProgramEXT (GLuint pipeline, GLuint program);
1605 GL_APICALL void GL_APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value);
1607 GL_APICALL void GL_APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint x);
1608 GL_APICALL void GL_APIENTRY glProgramUniform2iEXT (GLuint program, GLint location, GLint x, GLint y…
1611 GL_APICALL void GL_APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat x);
1630 typedef void (GL_APIENTRYP PFNGLACTIVESHADERPROGRAMEXTPROC) (GLuint pipeline, GLuint program);
1636 typedef void (GL_APIENTRYP PFNGLPROGRAMPARAMETERIEXTPROC) (GLuint program, GLenum pname, GLint valu…
1638 typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1IEXTPROC) (GLuint program, GLint location, GLint x);
1642 typedef void (GL_APIENTRYP PFNGLPROGRAMUNIFORM1FEXTPROC) (GLuint program, GLint location, GLfloat x…
2007 GL_APICALL GLboolean GL_APIENTRY glExtIsProgramBinaryQCOM (GLuint program);
[all …]
A DSDL_opengles2_gl2.h474 GL_APICALL void GL_APIENTRY glAttachShader (GLuint program, GLuint shader);
503 GL_APICALL void GL_APIENTRY glDeleteProgram (GLuint program);
510 GL_APICALL void GL_APIENTRY glDetachShader (GLuint program, GLuint shader);
530 GL_APICALL GLint GL_APIENTRY glGetAttribLocation (GLuint program, const GLchar* name);
537 GL_APICALL void GL_APIENTRY glGetProgramiv (GLuint program, GLenum pname, GLint* params);
548 GL_APICALL void GL_APIENTRY glGetUniformiv (GLuint program, GLint location, GLint* params);
549 GL_APICALL GLint GL_APIENTRY glGetUniformLocation (GLuint program, const GLchar* name);
557 GL_APICALL GLboolean GL_APIENTRY glIsProgram (GLuint program);
562 GL_APICALL void GL_APIENTRY glLinkProgram (GLuint program);
603 GL_APICALL void GL_APIENTRY glUseProgram (GLuint program);
[all …]
A DSDL_opengl_glext.h667 typedef void (APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program);
688 typedef GLboolean (APIENTRYP PFNGLISPROGRAMPROC) (GLuint program);
690 typedef void (APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program);
692 typedef void (APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program);
761 GLAPI void APIENTRY glDeleteProgram (GLuint program);
782 GLAPI GLboolean APIENTRY glIsProgram (GLuint program);
784 GLAPI void APIENTRY glLinkProgram (GLuint program);
786 GLAPI void APIENTRY glUseProgram (GLuint program);
806 GLAPI void APIENTRY glValidateProgram (GLuint program);
2967 GLAPI GLboolean APIENTRY glIsProgramARB (GLuint program);
[all …]
/AliOS-Things-master/components/SDL2/src/video/khronos/GLES2/
A Dgl2ext.h1097 typedef GLint (GL_APIENTRYP PFNGLGETFRAGDATAINDEXEXTPROC) (GLuint program, const GLchar *name);
1102 GL_APICALL GLint GL_APIENTRY glGetFragDataIndexEXT (GLuint program, const GLchar *name);
1753 typedef void (GL_APIENTRYP PFNGLACTIVESHADERPROGRAMEXTPROC) (GLuint pipeline, GLuint program);
1798 GL_APICALL void GL_APIENTRY glActiveShaderProgramEXT (GLuint pipeline, GLuint program);
1806 GL_APICALL void GL_APIENTRY glProgramParameteriEXT (GLuint program, GLenum pname, GLint value);
1807 GL_APICALL void GL_APIENTRY glProgramUniform1fEXT (GLuint program, GLint location, GLfloat v0);
1809 GL_APICALL void GL_APIENTRY glProgramUniform1iEXT (GLuint program, GLint location, GLint v0);
1828 GL_APICALL void GL_APIENTRY glProgramUniform1uiEXT (GLuint program, GLint location, GLuint v0);
2796 GL_APICALL void GL_APIENTRY glProgramUniform1i64NV (GLuint program, GLint location, GLint64EXT x);
3413 typedef GLboolean (GL_APIENTRYP PFNGLEXTISPROGRAMBINARYQCOMPROC) (GLuint program);
[all …]
A Dgl2.h413 typedef void (GL_APIENTRYP PFNGLDELETEPROGRAMPROC) (GLuint program);
467 typedef GLboolean (GL_APIENTRYP PFNGLISPROGRAMPROC) (GLuint program);
472 typedef void (GL_APIENTRYP PFNGLLINKPROGRAMPROC) (GLuint program);
513 typedef void (GL_APIENTRYP PFNGLUSEPROGRAMPROC) (GLuint program);
514 typedef void (GL_APIENTRYP PFNGLVALIDATEPROGRAMPROC) (GLuint program);
527 GL_APICALL void GL_APIENTRY glAttachShader (GLuint program, GLuint shader);
556 GL_APICALL void GL_APIENTRY glDeleteProgram (GLuint program);
610 GL_APICALL GLboolean GL_APIENTRY glIsProgram (GLuint program);
615 GL_APICALL void GL_APIENTRY glLinkProgram (GLuint program);
656 GL_APICALL void GL_APIENTRY glUseProgram (GLuint program);
[all …]
/AliOS-Things-master/components/SDL2/test/
A Dtestshader.c32 GLhandleARB program; member
159 data->program = glCreateProgramObjectARB(); in CompileShaderProgram()
174 glAttachObjectARB(data->program, data->vert_shader); in CompileShaderProgram()
175 glAttachObjectARB(data->program, data->frag_shader); in CompileShaderProgram()
176 glLinkProgramARB(data->program); in CompileShaderProgram()
179 glUseProgramObjectARB(data->program); in CompileShaderProgram()
183 location = glGetUniformLocationARB(data->program, tex_name); in CompileShaderProgram()
198 glDeleteObjectARB(data->program); in DestroyShaderProgram()
393 glUseProgramObjectARB(shaders[current_shader].program); in DrawGLScene()
A Dacinclude.m421 AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run a test SDL program],
164 echo "*** Could not run SDL test program, checking why..."
177 [ echo "*** The test program compiled, but did not run. This usually means"
186 [ echo "*** The test program failed to compile or link. See the file config.log for the"
208 # This program is free software; you can redistribute it and/or modify
213 # This program is distributed in the hope that it will be useful, but
219 # along with this program; if not, write to the Free Software
223 # distribute this file as part of a program that contains a
225 # the same distribution terms that you use for the rest of that program.
/AliOS-Things-master/components/jsoncpp/
A DCMakeCache.txt17 //Path to a program.
20 //Path to a program.
23 //Path to a program.
65 //Path to a program.
89 //Path to a program.
92 //Path to a program.
115 //Path to a program.
118 //Path to a program.
121 //Path to a program.
148 //Path to a program.
[all …]
/AliOS-Things-master/components/SDL2/src/video/yuv2rgb/
A DREADME.md12 There is a simple test program, that convert a raw YUV file to rgb ppm format, and measure computat…
22 The test program only support raw YUV files for the YUV420 format, and ppm for the RGB24 format.
27 To generate the rgb file, you can use the ImageMagick convert program:
31 Then, for YUV420 to RGB24 conversion, use the test program like that:
41 On my computer, the test program on a 4K image give the following for yuv2rgb:
/AliOS-Things-master/components/SDL2/src/image/external/tiff-4.0.9/contrib/iptcutil/
A DREADME8 Notes: You tell the program the "type" of input file via the -t and -b
11 -o switches to tell the program what the input and output files
15 Parts of this program were derived from other places. The original
/AliOS-Things-master/components/SDL2/src/image/external/jpeg-9b/
A Dfilelist.txt39 be included by an application program. (cjpeg/djpeg/etc do use jinclude.h,
48 an application program:
50 jcapimin.c Application program interface: core routines for compression.
51 jcapistd.c Application program interface: standard compression.
52 jdapimin.c Application program interface: core routines for decompression.
53 jdapistd.c Application program interface: standard decompression.
54 jcomapi.c Application program interface routines common to compression
114 jmemname.c Makes temporary files with program-generated file names.
142 cjpeg.c Main program for cjpeg.
143 djpeg.c Main program for djpeg.
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/libtests/
A Dpngunknown.c404 const char *program; member
413 init_display(display *d, const char *program) in init_display() argument
419 d->program = program; in init_display()
420 d->file = program; in init_display()
1106 usage(const char *program, const char *reason) in usage() argument
1110 "testfile.png\n", reason, program); in usage()
1140 usage(d.program, "--touch: missing file name"); in main()
1151 usage(d.program, "missing test file"); in main()
1157 usage(d.program, "extra arguments"); in main()
1186 fprintf(stderr, "%s: %s: internal error\n", d.program, d.file); in main()
[all …]
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/gregbook/
A DCOPYING16 Foundation's software and to any other program whose authors commit to
33 For example, if you distribute copies of such a program, whether
50 Finally, any free program is threatened constantly by software
52 program will individually obtain patent licenses, in effect making the
53 program proprietary. To prevent this, we have made it clear that any
62 0. This License applies to any program or other work which contains
65 refers to any such program or work, and a "work based on the Program"
103 c) If the modified program normally reads commands interactively
108 a warranty) and that users may redistribute the program under
307 along with this program; if not, write to the Free Software
[all …]
A DLICENSE36 This program is free software; you can redistribute it and/or modify
41 This program is distributed in the hope that it will be useful,
47 along with this program; if not, write to the Free Software Foundation,
/AliOS-Things-master/components/SDL2/src/image/acinclude/
A Dpkg.m45 # This program is free software; you can redistribute it and/or modify
10 # This program is distributed in the hope that it will be useful, but
16 # along with this program; if not, write to the Free Software
20 # distribute this file as part of a program that contains a
22 # the same distribution terms that you use for the rest of that program.
/AliOS-Things-master/components/SDL2/src/hidapi/m4/
A Dpkg.m45 # This program is free software; you can redistribute it and/or modify
10 # This program is distributed in the hope that it will be useful, but
16 # along with this program; if not, write to the Free Software
20 # distribute this file as part of a program that contains a
22 # the same distribution terms that you use for the rest of that program.
/AliOS-Things-master/components/mbedtls/programs/
A DREADME.md9 …Warning: this program illustrates how to use low-level functions in the library. It should not be …
17 * [`hash/hello.c`](hash/hello.c): hello-world program for MD5.
70 * [`ssl/dtls_client.c`](ssl/dtls_client.c): a simple DTLS client program, which sends one datagram …
72 ….c): a simple DTLS server program, which expects one datagram from the client and writes one datag…
78 …HTTPS server using one process per client to send a fixed response. This program requires a Unix/P…
82 … HTTPS server using one thread per client to send a fixed response. This program requires the pthr…
94 In addition to providing options for testing client-side features, the `ssl_client2` program has op…
102 … check that each certificate matches the corresponding private key. This program requires some tes…
106 * [`test/zeroize.c`](test/zeroize.c): a test program for `mbedtls_platform_zeroize`, used by [`test…
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/visupng/
A DREADME.txt11 the program's objective. However, further extensions (like support for other
45 1) Build the program with the configuration "Win32 LIB" and you only need to
48 2) Build the program with the configuration "Win32 DLL" and you need to put
/AliOS-Things-master/components/SDL2/acinclude/
A Dax_gcc_x86_cpuid.m412 # compatible syntax for inline assembly instructions, run a small program
32 # This program is free software: you can redistribute it and/or modify it
37 # This program is distributed in the hope that it will be useful, but
43 # with this program. If not, see <http://www.gnu.org/licenses/>.
A Dax_check_compiler_flags.m423 # This program is free software: you can redistribute it and/or modify it
28 # This program is distributed in the hope that it will be useful, but
34 # with this program. If not, see <http://www.gnu.org/licenses/>.
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/pngminim/decoder/
A Dpngusr.dfa31 # Your program will probably need other options. The example
32 # program here, pngm2pnm, requires the following. Take a look
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/pngminim/encoder/
A Dpngusr.dfa33 # Your program will probably need other options. The example
34 # program here, pnm2pngm, requires the following. Take a look
/AliOS-Things-master/components/SDL2/src/image/external/libpng-1.6.37/contrib/pngminim/preader/
A Dpngusr.dfa29 # Your program will probably need other options. The example
30 # program here, rpng2-x, requires the following. Take a look
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/win32/
A DREADME-WIN32.txt38 minigzip.exe A statically-bound test program (using zlib.lib, not the dll)
41 minigzip_d.exe A zlib1.dll bound test program (using zdll.lib)
48 zdll.exp a compiled program to the zlib1.dll binary
55 the program's runtime directory (where the .exe resides)
60 attempting to diagnose program misbehavior or a crash. Many additional

Completed in 101 milliseconds

1234567