Home
last modified time | relevance | path

Searched refs:target (Results 551 - 575 of 6932) sorted by relevance

1...<<21222324252627282930>>...278

/third_party/skia/third_party/externals/swiftshader/src/Common/
H A DThread.hpp116 int64_t atomicExchange(int64_t volatile *target, int64_t value);
117 int atomicExchange(int volatile *target, int value);
122 int atomicAdd(int volatile *target, int value);
238 inline int64_t atomicExchange(volatile int64_t *target, int64_t value) in atomicExchange() argument
241 return InterlockedExchange64(target, value); in atomicExchange()
244 __asm__ __volatile__("lock; xchg8 %x0,(%x1)" : "=r" (ret) :"r" (target), "0" (value) : "memory" ); in atomicExchange()
249 inline int atomicExchange(volatile int *target, int value) in atomicExchange() argument
252 return InterlockedExchange((volatile long*)target, (long)value); in atomicExchange()
255 __asm__ __volatile__("lock; xchgl %x0,(%x1)" : "=r" (ret) :"r" (target), "0" (value) : "memory" ); in atomicExchange()
279 inline int atomicAdd(volatile int* target, in argument
[all...]
/kernel/linux/linux-5.10/kernel/
H A Dcpu.c48 * @target: The target state
61 enum cpuhp_state target; member
175 trace_cpuhp_enter(cpu, st->target, state, cb); in cpuhp_invoke_callback()
187 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node); in cpuhp_invoke_callback()
199 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node); in cpuhp_invoke_callback()
224 trace_cpuhp_multi_enter(cpu, st->target, state, cbm, node); in cpuhp_invoke_callback()
457 cpuhp_set_state(struct cpuhp_cpu_state *st, enum cpuhp_state target) in cpuhp_set_state() argument
464 st->target = target; in cpuhp_set_state()
508 cpuhp_kick_ap(struct cpuhp_cpu_state *st, enum cpuhp_state target) cpuhp_kick_ap() argument
616 cpuhp_up_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st, enum cpuhp_state target) cpuhp_up_callbacks() argument
922 enum cpuhp_state target = max((int)st->target, CPUHP_AP_OFFLINE); take_cpu_down() local
1032 cpuhp_down_callbacks(unsigned int cpu, struct cpuhp_cpu_state *st, enum cpuhp_state target) cpuhp_down_callbacks() argument
1051 _cpu_down(unsigned int cpu, int tasks_frozen, enum cpuhp_state target) _cpu_down() argument
1118 cpu_down_maps_locked(unsigned int cpu, enum cpuhp_state target) cpu_down_maps_locked() argument
1125 cpu_down(unsigned int cpu, enum cpuhp_state target) cpu_down() argument
1216 enum cpuhp_state target = min((int)st->target, CPUHP_AP_ONLINE); notify_cpu_starting() local
1255 _cpu_up(unsigned int cpu, int tasks_frozen, enum cpuhp_state target) _cpu_up() argument
1315 cpu_up(unsigned int cpu, enum cpuhp_state target) cpu_up() argument
2212 int target, ret; write_cpuhp_target() local
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/exec/
H A Dbinfmt_script.py38 # @target: end of executable pathname
40 # @fill: character to fill between @root and @target to reach @size bytes
43 def test(name, size, good=True, leading="", root="./", target="/perl",
52 remaining = size - len(hashbang) - len(leading) - len(root) - len(target) - len(arg)
61 binary = dirpath + target
62 if len(target):
67 buf=hashbang + leading + root + middle + target + arg + newline
96 if len(target):
118 fill=" ", target="")
123 fill="", target
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/kvm/aarch64/
H A Dpsci_test.c76 struct kvm_vcpu **target) in setup_vm()
87 *target = aarch64_vcpu_add(vm, 1, &init, guest_code); in setup_vm()
109 "unexpected target cpu pc: %lx (expected: %lx)", in assert_vcpu_reset()
112 "unexpected target context id: %lx (expected: %lx)", in assert_vcpu_reset()
134 struct kvm_vcpu *source, *target; in host_test_cpu_on() local
139 vm = setup_vm(guest_test_cpu_on, &source, &target); in host_test_cpu_on()
142 * make sure the target is already off when executing the test. in host_test_cpu_on()
144 vcpu_power_off(target); in host_test_cpu_on()
146 vcpu_get_reg(target, KVM_ARM64_SYS_REG(SYS_MPIDR_EL1), &target_mpidr); in host_test_cpu_on()
153 assert_vcpu_reset(target); in host_test_cpu_on()
75 setup_vm(void *guest_code, struct kvm_vcpu **source, struct kvm_vcpu **target) setup_vm() argument
171 struct kvm_vcpu *source, *target; host_test_system_suspend() local
[all...]
/third_party/gn/src/gn/
H A Dtoolchain.cc14 #include "gn/target.h"
148 const Tool* Toolchain::GetToolForTargetFinalOutput(const Target* target) const { in GetToolForTargetFinalOutput()
149 return GetTool(Tool::GetToolTypeForTargetFinalOutput(target)); in GetToolForTargetFinalOutput()
153 const Target* target) const { in GetToolForTargetFinalOutputAsC()
154 return GetToolAsC(Tool::GetToolTypeForTargetFinalOutput(target)); in GetToolForTargetFinalOutputAsC()
158 const Target* target) const { in GetToolForTargetFinalOutputAsGeneral()
159 return GetToolAsGeneral(Tool::GetToolTypeForTargetFinalOutput(target)); in GetToolForTargetFinalOutputAsGeneral()
163 const Target* target) const { in GetToolForTargetFinalOutputAsRust()
164 return GetToolAsRust(Tool::GetToolTypeForTargetFinalOutput(target)); in GetToolForTargetFinalOutputAsRust()
168 const Target* target) cons in GetToolForTargetFinalOutputAsBuiltin()
[all...]
H A Dninja_outputs_writer_unittest.cc27 // Collects Ninja outputs for each target. Used by multiple background threads.
34 void BackgroundDoWrite(TargetWriteInfo* write_info, const Target* target) { in BackgroundDoWrite() argument
36 std::string rule = NinjaTargetWriter::RunAndWriteFile(target, nullptr, in BackgroundDoWrite()
42 write_info->ninja_outputs_map.emplace(target, in BackgroundDoWrite()
49 const Target* target = item->AsTarget(); in ItemResolvedAndGeneratedCallback() local
50 if (target) { in ItemResolvedAndGeneratedCallback()
52 [write_info, target]() { BackgroundDoWrite(write_info, target); }); in ItemResolvedAndGeneratedCallback()
/third_party/jerryscript/tests/jerry/es2015/
H A Dobject-assign.js69 assert (JSON.stringify (o1) === '{"a":1,"b":2,"c":3}'); //target object itself is changed.
104 var target = Object.defineProperty ({}, 'foo', {
107 }); // target.foo is a read-only property
110 // TypeError: "foo" is read-only,the Exception is thrown when assigning target.foo
111 Object.assign (target, { bar: 2 }, { foo2: 3, foo: 3, foo3: 3 }, { baz: 4 });
117 assert (target.bar === 2); // the first source was copied successfully.
118 assert (target.foo2 === 3); // the first property of the second source was copied successfully.
119 assert (target.foo === 1); // exception is thrown here.
120 assert (target.foo3 === undefined); // assign method has finished, foo3 will not be copied.
121 assert (target
[all...]
/third_party/skia/third_party/externals/angle2/src/libGL/
H A Dentry_points_gl_3_autogen.h22 ANGLE_EXPORT void GL_APIENTRY GL_BindBufferBase(GLenum target, GLuint index, GLuint buffer);
24 GL_BindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
28 ANGLE_EXPORT void GL_APIENTRY GL_BindFramebuffer(GLenum target, GLuint framebuffer);
29 ANGLE_EXPORT void GL_APIENTRY GL_BindRenderbuffer(GLenum target, GLuint renderbuffer);
41 ANGLE_EXPORT GLenum GL_APIENTRY GL_CheckFramebufferStatus(GLenum target);
42 ANGLE_EXPORT void GL_APIENTRY GL_ClampColor(GLenum target, GLenum clamp);
59 ANGLE_EXPORT void GL_APIENTRY GL_Disablei(GLenum target, GLuint index);
60 ANGLE_EXPORT void GL_APIENTRY GL_Enablei(GLenum target, GLuint index);
63 ANGLE_EXPORT void GL_APIENTRY GL_FlushMappedBufferRange(GLenum target,
66 ANGLE_EXPORT void GL_APIENTRY GL_FramebufferRenderbuffer(GLenum target,
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/
H A Dnull_functions.cpp23 void INTERNAL_GL_APIENTRY glBeginQueryNULL(GLenum target, GLuint id) {} in glBeginQueryNULL() argument
25 void INTERNAL_GL_APIENTRY glBeginQueryIndexedNULL(GLenum target, GLuint index, GLuint id) {} in glBeginQueryIndexedNULL() argument
32 void INTERNAL_GL_APIENTRY glBindBufferNULL(GLenum target, GLuint buffer) {} in glBindBufferNULL() argument
34 void INTERNAL_GL_APIENTRY glBindBufferBaseNULL(GLenum target, GLuint index, GLuint buffer) {} in glBindBufferBaseNULL() argument
37 glBindBufferRangeNULL(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size) in glBindBufferRangeNULL() argument
40 void INTERNAL_GL_APIENTRY glBindBuffersBaseNULL(GLenum target, in glBindBuffersBaseNULL() argument
46 void INTERNAL_GL_APIENTRY glBindBuffersRangeNULL(GLenum target, in glBindBuffersRangeNULL() argument
65 void INTERNAL_GL_APIENTRY glBindFramebufferNULL(GLenum target, GLuint framebuffer) {} in glBindFramebufferNULL() argument
83 void INTERNAL_GL_APIENTRY glBindRenderbufferNULL(GLenum target, GLuint renderbuffer) {} in glBindRenderbufferNULL() argument
89 void INTERNAL_GL_APIENTRY glBindTextureNULL(GLenum target, GLuin argument
95 glBindTransformFeedbackNULL(GLenum target, GLuint id) glBindTransformFeedbackNULL() argument
190 glBufferDataNULL(GLenum target, GLsizeiptr size, const void *data, GLenum usage) glBufferDataNULL() argument
196 glBufferStorageNULL(GLenum target, GLsizeiptr size, const void *data, GLbitfield flags) glBufferStorageNULL() argument
202 glBufferStorageMemEXTNULL(GLenum target, GLsizeiptr size, GLuint memory, GLuint64 offset) glBufferStorageMemEXTNULL() argument
208 glBufferSubDataNULL(GLenum target, GLintptr offset, GLsizeiptr size, const void *data) glBufferSubDataNULL() argument
214 glCheckFramebufferStatusNULL(GLenum target) glCheckFramebufferStatusNULL() argument
219 glCheckNamedFramebufferStatusNULL(GLuint framebuffer, GLenum target) glCheckNamedFramebufferStatusNULL() argument
224 glClampColorNULL(GLenum target, GLenum clamp) glClampColorNULL() argument
228 glClearBufferDataNULL(GLenum target, GLenum internalformat, GLenum format, GLenum type, const void *data) glClearBufferDataNULL() argument
235 glClearBufferSubDataNULL(GLenum target, GLenum internalformat, GLintptr offset, GLsizeiptr size, GLenum format, GLenum type, const void *data) glClearBufferSubDataNULL() argument
345 glCompressedTexImage1DNULL(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLint border, GLsizei imageSize, const void *data) glCompressedTexImage1DNULL() argument
354 glCompressedTexImage2DNULL(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLint border, GLsizei imageSize, const void *data) glCompressedTexImage2DNULL() argument
364 glCompressedTexImage3DNULL(GLenum target, GLint level, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLsizei imageSize, const void *data) glCompressedTexImage3DNULL() argument
375 glCompressedTexSubImage1DNULL(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const void *data) glCompressedTexSubImage1DNULL() argument
384 glCompressedTexSubImage2DNULL(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const void *data) glCompressedTexSubImage2DNULL() argument
395 glCompressedTexSubImage3DNULL(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLsizei imageSize, const void *data) glCompressedTexSubImage3DNULL() argument
472 glCopyTexImage1DNULL(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLint border) glCopyTexImage1DNULL() argument
481 glCopyTexImage2DNULL(GLenum target, GLint level, GLenum internalformat, GLint x, GLint y, GLsizei width, GLsizei height, GLint border) glCopyTexImage2DNULL() argument
492 glCopyTexSubImage1DNULL(GLenum target, GLint level, GLint xoffset, GLint x, GLint y, GLsizei width) glCopyTexSubImage1DNULL() argument
495 glCopyTexSubImage2DNULL(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint x, GLint y, GLsizei width, GLsizei height) glCopyTexSubImage2DNULL() argument
505 glCopyTexSubImage3DNULL(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLint x, GLint y, GLsizei width, GLsizei height) glCopyTexSubImage3DNULL() argument
560 glCreateQueriesNULL(GLenum target, GLsizei n, GLuint *ids) glCreateQueriesNULL() argument
578 glCreateTexturesNULL(GLenum target, GLsizei n, GLuint *textures) glCreateTexturesNULL() argument
654 glDisableiNULL(GLenum target, GLuint index) glDisableiNULL() argument
656 glDiscardFramebufferEXTNULL(GLenum target, GLsizei numAttachments, const GLenum *attachments) glDiscardFramebufferEXTNULL() argument
770 glEGLImageTargetRenderbufferStorageOESNULL(GLenum target, GLeglImageOES image) glEGLImageTargetRenderbufferStorageOESNULL() argument
774 glEGLImageTargetTexture2DOESNULL(GLenum target, GLeglImageOES image) glEGLImageTargetTexture2DOESNULL() argument
782 glEnableiNULL(GLenum target, GLuint index) glEnableiNULL() argument
786 glEndQueryNULL(GLenum target) glEndQueryNULL() argument
788 glEndQueryIndexedNULL(GLenum target, GLuint index) glEndQueryIndexedNULL() argument
803 glFlushMappedBufferRangeNULL(GLenum target, GLintptr offset, GLsizeiptr length) glFlushMappedBufferRangeNULL() argument
813 glFramebufferParameteriNULL(GLenum target, GLenum pname, GLint param) glFramebufferParameteriNULL() argument
815 glFramebufferRenderbufferNULL(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) glFramebufferRenderbufferNULL() argument
821 glFramebufferTextureNULL(GLenum target, GLenum attachment, GLuint texture, GLint level) glFramebufferTextureNULL() argument
827 glFramebufferTexture1DNULL(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) glFramebufferTexture1DNULL() argument
834 glFramebufferTexture2DNULL(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) glFramebufferTexture2DNULL() argument
841 glFramebufferTexture2DMultisampleEXTNULL(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples) glFramebufferTexture2DMultisampleEXTNULL() argument
849 glFramebufferTexture2DMultisampleIMGNULL(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLsizei samples) glFramebufferTexture2DMultisampleIMGNULL() argument
857 glFramebufferTexture3DNULL(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset) glFramebufferTexture3DNULL() argument
865 glFramebufferTextureLayerNULL(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer) glFramebufferTextureLayerNULL() argument
872 glFramebufferTextureMultiviewOVRNULL(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint baseViewIndex, GLsizei numViews) glFramebufferTextureMultiviewOVRNULL() argument
904 glGenerateMipmapNULL(GLenum target) glGenerateMipmapNULL() argument
993 glGetBooleani_vNULL(GLenum target, GLuint index, GLboolean *data) glGetBooleani_vNULL() argument
997 glGetBufferParameteri64vNULL(GLenum target, GLenum pname, GLint64 *params) glGetBufferParameteri64vNULL() argument
1000 glGetBufferParameterivNULL(GLenum target, GLenum pname, GLint *params) glGetBufferParameterivNULL() argument
1002 glGetBufferPointervNULL(GLenum target, GLenum pname, void **params) glGetBufferPointervNULL() argument
1004 glGetBufferSubDataNULL(GLenum target, GLintptr offset, GLsizeiptr size, void *data) glGetBufferSubDataNULL() argument
1010 glGetCompressedTexImageNULL(GLenum target, GLint level, void *img) glGetCompressedTexImageNULL() argument
1042 glGetDoublei_vNULL(GLenum target, GLuint index, GLdouble *data) glGetDoublei_vNULL() argument
1053 glGetFloati_vNULL(GLenum target, GLuint index, GLfloat *data) glGetFloati_vNULL() argument
1067 glGetFramebufferAttachmentParameterivNULL(GLenum target, GLenum attachment, GLenum pname, GLint *params) glGetFramebufferAttachmentParameterivNULL() argument
1073 glGetFramebufferParameterivNULL(GLenum target, GLenum pname, GLint *params) glGetFramebufferParameterivNULL() argument
1083 glGetInteger64i_vNULL(GLenum target, GLuint index, GLint64 *data) glGetInteger64i_vNULL() argument
1087 glGetIntegeri_vNULL(GLenum target, GLuint index, GLint *data) glGetIntegeri_vNULL() argument
1091 glGetInternalformatSampleivNVNULL(GLenum target, GLenum internalformat, GLsizei samples, GLenum pname, GLsizei bufSize, GLint *params) glGetInternalformatSampleivNVNULL() argument
1099 glGetInternalformati64vNULL(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint64 *params) glGetInternalformati64vNULL() argument
1106 glGetInternalformativNULL(GLenum target, GLenum internalformat, GLenum pname, GLsizei bufSize, GLint *params) glGetInternalformativNULL() argument
1269 glGetQueryIndexedivNULL(GLenum target, GLuint index, GLenum pname, GLint *params) glGetQueryIndexedivNULL() argument
1283 glGetQueryivNULL(GLenum target, GLenum pname, GLint *params) glGetQueryivNULL() argument
1285 glGetRenderbufferParameterivNULL(GLenum target, GLenum pname, GLint *params) glGetRenderbufferParameterivNULL() argument
1358 glGetTexImageNULL(GLenum target, GLint level, GLenum format, GLenum type, void *pixels) glGetTexImageNULL() argument
1361 glGetTexLevelParameterfvNULL(GLenum target, GLint level, GLenum pname, GLfloat *params) glGetTexLevelParameterfvNULL() argument
1367 glGetTexLevelParameterivNULL(GLenum target, GLint level, GLenum pname, GLint *params) glGetTexLevelParameterivNULL() argument
1373 glGetTexParameterIivNULL(GLenum target, GLenum pname, GLint *params) glGetTexParameterIivNULL() argument
1375 glGetTexParameterIuivNULL(GLenum target, GLenum pname, GLuint *params) glGetTexParameterIuivNULL() argument
1377 glGetTexParameterfvNULL(GLenum target, GLenum pname, GLfloat *params) glGetTexParameterfvNULL() argument
1379 glGetTexParameterivNULL(GLenum target, GLenum pname, GLint *params) glGetTexParameterivNULL() argument
1482 glGetUnsignedBytei_vEXTNULL(GLenum target, GLuint index, GLubyte *data) glGetUnsignedBytei_vEXTNULL() argument
1515 glGetnCompressedTexImageNULL(GLenum target, GLint lod, GLsizei bufSize, void *pixels) glGetnCompressedTexImageNULL() argument
1521 glGetnTexImageNULL(GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, void *pixels) glGetnTexImageNULL() argument
1553 glHintNULL(GLenum target, GLenum mode) glHintNULL() argument
1595 glInvalidateFramebufferNULL(GLenum target, GLsizei numAttachments, const GLenum *attachments) glInvalidateFramebufferNULL() argument
1614 glInvalidateSubFramebufferNULL(GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height) glInvalidateSubFramebufferNULL() argument
1645 glIsEnablediNULL(GLenum target, GLuint index) glIsEnablediNULL() argument
1726 glMapBufferNULL(GLenum target, GLenum access) glMapBufferNULL() argument
1731 glMapBufferRangeNULL(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access) glMapBufferRangeNULL() argument
2229 glQueryCounterNULL(GLuint id, GLenum target) glQueryCounterNULL() argument
2254 glRenderbufferStorageNULL(GLenum target, GLenum internalformat, GLsizei width, GLsizei height) glRenderbufferStorageNULL() argument
2260 glRenderbufferStorageMultisampleNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) glRenderbufferStorageMultisampleNULL() argument
2267 glRenderbufferStorageMultisampleEXTNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) glRenderbufferStorageMultisampleEXTNULL() argument
2274 glRenderbufferStorageMultisampleIMGNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) glRenderbufferStorageMultisampleIMGNULL() argument
2377 glTexBufferNULL(GLenum target, GLenum internalformat, GLuint buffer) glTexBufferNULL() argument
2379 glTexBufferEXTNULL(GLenum target, GLenum internalformat, GLuint buffer) glTexBufferEXTNULL() argument
2381 glTexBufferOESNULL(GLenum target, GLenum internalformat, GLuint buffer) glTexBufferOESNULL() argument
2383 glTexBufferRangeNULL(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size) glTexBufferRangeNULL() argument
2390 glTexBufferRangeEXTNULL(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size) glTexBufferRangeEXTNULL() argument
2397 glTexBufferRangeOESNULL(GLenum target, GLenum internalformat, GLuint buffer, GLintptr offset, GLsizeiptr size) glTexBufferRangeOESNULL() argument
2404 glTexImage1DNULL(GLenum target, GLint level, GLint internalformat, GLsizei width, GLint border, GLenum format, GLenum type, const void *pixels) glTexImage1DNULL() argument
2414 glTexImage2DNULL(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels) glTexImage2DNULL() argument
2425 glTexImage2DMultisampleNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations) glTexImage2DMultisampleNULL() argument
2433 glTexImage3DNULL(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels) glTexImage3DNULL() argument
2445 glTexImage3DMultisampleNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations) glTexImage3DMultisampleNULL() argument
2454 glTexParameterIivNULL(GLenum target, GLenum pname, const GLint *params) glTexParameterIivNULL() argument
2456 glTexParameterIuivNULL(GLenum target, GLenum pname, const GLuint *params) glTexParameterIuivNULL() argument
2459 glTexParameterfNULL(GLenum target, GLenum pname, GLfloat param) glTexParameterfNULL() argument
2461 glTexParameterfvNULL(GLenum target, GLenum pname, const GLfloat *params) glTexParameterfvNULL() argument
2464 glTexParameteriNULL(GLenum target, GLenum pname, GLint param) glTexParameteriNULL() argument
2466 glTexParameterivNULL(GLenum target, GLenum pname, const GLint *params) glTexParameterivNULL() argument
2468 glTexStorage1DNULL(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width) glTexStorage1DNULL() argument
2474 glTexStorage2DNULL(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height) glTexStorage2DNULL() argument
2481 glTexStorage2DMultisampleNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLboolean fixedsamplelocations) glTexStorage2DMultisampleNULL() argument
2489 glTexStorage3DNULL(GLenum target, GLsizei levels, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth) glTexStorage3DNULL() argument
2497 glTexStorage3DMultisampleNULL(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedsamplelocations) glTexStorage3DMultisampleNULL() argument
2506 glTexStorageMem2DEXTNULL(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLuint memory, GLuint64 offset) glTexStorageMem2DEXTNULL() argument
2515 glTexStorageMem2DMultisampleEXTNULL(GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset) glTexStorageMem2DMultisampleEXTNULL() argument
2525 glTexStorageMem3DEXTNULL(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLuint memory, GLuint64 offset) glTexStorageMem3DEXTNULL() argument
2535 glTexStorageMem3DMultisampleEXTNULL(GLenum target, GLsizei samples, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth, GLboolean fixedSampleLocations, GLuint memory, GLuint64 offset) glTexStorageMem3DMultisampleEXTNULL() argument
2546 glTexSubImage1DNULL(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLenum type, const void *pixels) glTexSubImage1DNULL() argument
2555 glTexSubImage2DNULL(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels) glTexSubImage2DNULL() argument
2566 glTexSubImage3DNULL(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels) glTexSubImage3DNULL() argument
2724 glTextureViewNULL(GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers) glTextureViewNULL() argument
2938 glUnmapBufferNULL(GLenum target) glUnmapBufferNULL() argument
[all...]
H A Dnull_functions.h22 void INTERNAL_GL_APIENTRY glBeginQueryNULL(GLenum target, GLuint id);
23 void INTERNAL_GL_APIENTRY glBeginQueryIndexedNULL(GLenum target, GLuint index, GLuint id);
28 void INTERNAL_GL_APIENTRY glBindBufferNULL(GLenum target, GLuint buffer);
29 void INTERNAL_GL_APIENTRY glBindBufferBaseNULL(GLenum target, GLuint index, GLuint buffer);
31 glBindBufferRangeNULL(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
32 void INTERNAL_GL_APIENTRY glBindBuffersBaseNULL(GLenum target,
36 void INTERNAL_GL_APIENTRY glBindBuffersRangeNULL(GLenum target,
49 void INTERNAL_GL_APIENTRY glBindFramebufferNULL(GLenum target, GLuint framebuffer);
61 void INTERNAL_GL_APIENTRY glBindRenderbufferNULL(GLenum target, GLuint renderbuffer);
64 void INTERNAL_GL_APIENTRY glBindTextureNULL(GLenum target, GLuin
[all...]
/third_party/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
H A DAnyTransliterator.java26 * output script. It is named Any-T or Any-T/V, where T is the target
27 * and V is the optional variant. The target T is a script.
32 * that script to the given target/variant. It does so by
34 * target/variant. If a run consists only of the target script,
61 * The target or target/variant string.
63 private String target; field in AnyTransliterator
66 * The target script code. Never USCRIPT_INVALID_CODE.
92 // our target o in handleTransliterate()
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DAnyTransliterator.java27 * output script. It is named Any-T or Any-T/V, where T is the target
28 * and V is the optional variant. The target T is a script.
33 * that script to the given target/variant. It does so by
35 * target/variant. If a run consists only of the target script,
61 * The target or target/variant string.
63 private String target; field in AnyTransliterator
66 * The target script code. Never USCRIPT_INVALID_CODE.
92 // our target o in handleTransliterate()
[all...]
/third_party/mesa3d/src/gallium/drivers/nouveau/nv30/
H A Dnv30_vertprog.c93 uint32_t *inst, target; in nv30_vertprog_validate() local
110 target = vp->exec->start + reloc->target; in nv30_vertprog_validate()
113 inst[2] |= target << 2; in nv30_vertprog_validate()
119 target = vp->exec->start + reloc->target; in nv30_vertprog_validate()
122 inst[2] |= target >> 3; in nv30_vertprog_validate()
124 inst[3] |= target << 29; in nv30_vertprog_validate()
136 uint32_t *inst, target; in nv30_vertprog_validate() local
153 target in nv30_vertprog_validate()
[all...]
/third_party/rust/crates/autocfg/src/
H A Dlib.rs23 //! # std::env::set_var("OUT_DIR", "target");
87 target: Option<OsString>,
160 let target = env::var_os("TARGET"); in with_dir()
170 rustflags: rustflags(&target, &dir), in with_dir()
174 target: target, in with_dir()
219 if let Some(target) = self.target.as_ref() { in probe()
220 command.arg("--target").arg(target); in probe()
[all...]
/third_party/rust/crates/env_logger/src/fmt/
H A Dmod.rs191 target: built.format_target, in build()
216 target: bool,
320 if !self.target { in write_target()
324 match record.target() { in write_target()
326 target => self.write_header_value(target), in write_target()
409 fn write_target(target: &str, fmt: DefaultFormat) -> String { in write_target()
417 .target(target) in write_target()
438 target in format_with_header()
[all...]
/third_party/skia/third_party/externals/angle2/tools/android/modularization/convenience/
H A Dlookup_dep.py5 r'''Finds which build target(s) contain a particular Java class.
7 This is a utility script for finding out which build target dependency needs to
14 Find build target with class FooUtil:
41 description='Finds which build target contains a particular Java class.')
80 print(f'Could not find build target for class "{class_name}"')
84 print(f' "{class_entry.target}"')
89 print(f' "{class_entry.target}"')
96 """An assignment of a Java class to a build target."""
98 target: str
112 """Get class/target entrie
[all...]
/third_party/vk-gl-cts/external/openglcts/modules/gl/
H A Dgl4cMultiBindTests.cpp168 void InitData(deqp::Context& context, glw::GLenum target, glw::GLenum usage, glw::GLsizeiptr size,
179 static void Bind(const glw::Functions& gl, glw::GLuint id, glw::GLenum target);
181 static void BindBase(const glw::Functions& gl, glw::GLuint id, glw::GLenum target, glw::GLuint index);
183 static void Data(const glw::Functions& gl, glw::GLenum target, glw::GLenum usage, glw::GLsizeiptr size,
188 static void SubData(const glw::Functions& gl, glw::GLenum target, glw::GLintptr offset, glw::GLsizeiptr size,
220 static void AttachTexture(const glw::Functions& gl, glw::GLenum target, glw::GLenum attachment,
223 static void Bind(const glw::Functions& gl, glw::GLenum target, glw::GLuint id);
335 void InitStorage(deqp::Context& context, glw::GLenum target, glw::GLsizei levels, glw::GLenum internal_format,
342 static void Bind(const glw::Functions& gl, glw::GLuint id, glw::GLenum target);
344 static void CompressedImage(const glw::Functions& gl, glw::GLenum target, gl
417 InitData(deqp::Context& context, glw::GLenum target, glw::GLenum usage, glw::GLsizeiptr size, const glw::GLvoid* data) InitData() argument
482 Bind(const glw::Functions& gl, glw::GLuint id, glw::GLenum target) Bind() argument
495 BindBase(const glw::Functions& gl, glw::GLuint id, glw::GLenum target, glw::GLuint index) BindBase() argument
509 Data(const glw::Functions& gl, glw::GLenum target, glw::GLenum usage, glw::GLsizeiptr size, const glw::GLvoid* data) Data() argument
544 SubData(const glw::Functions& gl, glw::GLenum target, glw::GLintptr offset, glw::GLsizeiptr size, glw::GLvoid* data) SubData() argument
595 AttachTexture(const glw::Functions& gl, glw::GLenum target, glw::GLenum attachment, glw::GLuint texture_id, glw::GLint level, glw::GLuint width, glw::GLuint height) AttachTexture() argument
611 Bind(const glw::Functions& gl, glw::GLenum target, glw::GLuint id) Bind() argument
1009 InitStorage(deqp::Context& context, glw::GLenum target, glw::GLsizei levels, glw::GLenum internal_format, glw::GLuint width, glw::GLuint height, glw::GLuint depth, bool allow_error) InitStorage() argument
1042 Bind(const glw::Functions& gl, glw::GLuint id, glw::GLenum target) Bind() argument
1060 CompressedImage(const glw::Functions& gl, glw::GLenum target, glw::GLint level, glw::GLenum internal_format, glw::GLuint width, glw::GLuint height, glw::GLuint depth, glw::GLsizei image_size, const glw::GLvoid* data) CompressedImage() argument
1129 GetData(const glw::Functions& gl, glw::GLint level, glw::GLenum target, glw::GLenum format, glw::GLenum type, glw::GLvoid* out_data) GetData() argument
1144 GetLevelParameter(const glw::Functions& gl, glw::GLenum target, glw::GLint level, glw::GLenum pname, glw::GLint* param) GetLevelParameter() argument
1164 Image(const glw::Functions& gl, glw::GLenum target, glw::GLint level, glw::GLenum internal_format, glw::GLuint width, glw::GLuint height, glw::GLuint depth, glw::GLenum format, glw::GLenum type, const glw::GLvoid* data) Image() argument
1215 Storage(const glw::Functions& gl, glw::GLenum target, glw::GLsizei levels, glw::GLenum internal_format, glw::GLuint width, glw::GLuint height, glw::GLuint depth, bool allow_error) Storage() argument
1280 SubImage(const glw::Functions& gl, glw::GLenum target, glw::GLint level, glw::GLint x, glw::GLint y, glw::GLint z, glw::GLsizei width, glw::GLsizei height, glw::GLsizei depth, glw::GLenum format, glw::GLenum type, const glw::GLvoid* pixels) SubImage() argument
1652 const GLenum target = s_buffer_infos[i].m_target; iterate() local
2396 const GLenum target = s_buffer_infos[i].m_target; iterate() local
2562 const GLenum target = s_buffer_infos[i].m_target; iterate() local
2757 const GLenum target = s_texture_infos[i].m_target; iterate() local
3078 const GLenum target = s_texture_infos[i].m_target; iterate() local
3748 GLenum target = getTarget(i); iterate() local
4006 GLenum target = getTarget(i); iterate() local
[all...]
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/
H A DTracePerfTest.cpp95 void onReplayFramebufferChange(GLenum target, GLuint framebuffer);
96 void onReplayInvalidateFramebuffer(GLenum target,
99 void onReplayInvalidateSubFramebuffer(GLenum target,
108 void onReplayDiscardFramebufferEXT(GLenum target,
114 bool isDefaultFramebuffer(GLenum target) const;
206 void KHRONOS_APIENTRY BindFramebufferProc(GLenum target, GLuint framebuffer) in BindFramebufferProc() argument
208 gCurrentTracePerfTest->onReplayFramebufferChange(target, framebuffer); in BindFramebufferProc()
211 void KHRONOS_APIENTRY InvalidateFramebufferProc(GLenum target, in InvalidateFramebufferProc() argument
215 gCurrentTracePerfTest->onReplayInvalidateFramebuffer(target, numAttachments, attachments); in InvalidateFramebufferProc()
218 void KHRONOS_APIENTRY InvalidateSubFramebufferProc(GLenum target, in InvalidateSubFramebufferProc() argument
240 DiscardFramebufferEXTProc(GLenum target, GLsizei numAttachments, const GLenum *attachments) DiscardFramebufferEXTProc() argument
342 BufferDataMinimizedProc(GLenum target, GLsizeiptr size, const void *data, GLenum usage) BufferDataMinimizedProc() argument
350 BufferSubDataMinimizedProc(GLenum target, GLintptr offset, GLsizeiptr size, const void *data) BufferSubDataMinimizedProc() argument
360 MapBufferRangeMinimizedProc(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access) MapBufferRangeMinimizedProc() argument
369 TexImage2DMinimizedProc(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLint border, GLenum format, GLenum type, const void *pixels) TexImage2DMinimizedProc() argument
392 TexSubImage2DMinimizedProc(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLenum type, const void *pixels) TexSubImage2DMinimizedProc() argument
407 TexImage3DMinimizedProc(GLenum target, GLint level, GLint internalformat, GLsizei width, GLsizei height, GLsizei depth, GLint border, GLenum format, GLenum type, const void *pixels) TexImage3DMinimizedProc() argument
432 TexSubImage3DMinimizedProc(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLint zoffset, GLsizei width, GLsizei height, GLsizei depth, GLenum format, GLenum type, const void *pixels) TexSubImage3DMinimizedProc() argument
449 GenerateMipmapMinimizedProc(GLenum target) GenerateMipmapMinimizedProc() argument
1545 onReplayFramebufferChange(GLenum target, GLuint framebuffer) onReplayFramebufferChange() argument
1734 onReplayInvalidateFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments) onReplayInvalidateFramebuffer() argument
1750 onReplayInvalidateSubFramebuffer(GLenum target, GLsizei numAttachments, const GLenum *attachments, GLint x, GLint y, GLsizei width, GLsizei height) onReplayInvalidateSubFramebuffer() argument
1797 onReplayDiscardFramebufferEXT(GLenum target, GLsizei numAttachments, const GLenum *attachments) onReplayDiscardFramebufferEXT() argument
[all...]
/third_party/ltp/tools/sparse/sparse-src/
H A Dunssa.c7 * 2) Replace all the phi-nodes by copies of the temporaries to the phi-node target.
25 * target pseudos.
39 pseudo_t target = phi->target; in simplify_phi_node() local
54 // -> replace the target pseudo by the tmp in simplify_phi_node()
55 FOR_EACH_PTR(target->users, pu) { in simplify_phi_node()
69 tmp->type = phi->target->type; in replace_phi_node()
70 tmp->ident = phi->target->ident; in replace_phi_node()
87 def->target = tmp; in replace_phi_node()
99 insn->target in replace_phi_node()
[all...]
/third_party/vk-gl-cts/external/vulkan-docs/src/config/
H A DmakeSubmit.py33 # Make a single submission target. Several are needed per document.
39 # target - default 'html'
40 def makeTarget(outDir, extensions, submitFileName, title, target):
49 target)
57 def makeSubmit(outDir, submitName, required, extradepend, apideps, target='html'):
93 target=target)
99 target=target)
/third_party/typescript/tests/baselines/reference/
H A DdecoratorMetadata.js32 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
33 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
34 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
35 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
36 return c > 3 && r && Object.defineProperty(target, key, r), r;
H A DdecoratorMetadataWithTypeOnlyImport2.js33 var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
34 var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
35 if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
36 else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
37 return c > 3 && r && Object.defineProperty(target, key, r), r;
/third_party/protobuf/src/google/protobuf/
H A Dwrappers.pb.cc402 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { in _InternalSerialize()
409 target = stream->EnsureSpace(target); in _InternalSerialize()
410 target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormatLite::WriteDoubleToArray(1, this->_internal_value(), target); in _InternalSerialize()
414 target = ::PROTOBUF_NAMESPACE_ID::internal::WireFormat::InternalSerializeUnknownFieldsToArray( in _InternalSerialize()
415 _internal_metadata_.unknown_fields<::PROTOBUF_NAMESPACE_ID::UnknownFieldSet>(::PROTOBUF_NAMESPACE_ID::UnknownFieldSet::default_instance), target, stream); in _InternalSerialize()
418 return target; in _InternalSerialize()
597 ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const { in _InternalSerialize()
604 target in _InternalSerialize()
401 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
596 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
791 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
988 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
1185 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
1382 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
1579 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
1782 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
1990 _InternalSerialize( ::PROTOBUF_NAMESPACE_ID::uint8* target, ::PROTOBUF_NAMESPACE_ID::io::EpsCopyOutputStream* stream) const _InternalSerialize() argument
[all...]
/third_party/mesa3d/src/mesa/main/
H A Dtextureview.c308 GLenum target, in initialize_texture_fields()
315 const GLuint numFaces = _mesa_num_tex_faces(target); in initialize_texture_fields()
320 texObj->Target = target; in initialize_texture_fields()
326 const GLenum faceTarget = _mesa_cube_face_target(target, face); in initialize_texture_fields()
341 _mesa_next_mipmap_level_size(target, 0, in initialize_texture_fields()
358 * Check for compatible target
368 | Original target | Valid new targets | in target_valid()
425 "glTextureView(illegal target=%s)", in target_valid()
467 GLenum target, GLuint levels) in _mesa_set_texture_view_state()
472 texImage = _mesa_select_tex_image(texObj, target, in _mesa_set_texture_view_state()
307 initialize_texture_fields(struct gl_context *ctx, GLenum target, struct gl_texture_object *texObj, GLint levels, GLsizei width, GLsizei height, GLsizei depth, GLenum internalFormat, mesa_format texFormat, GLuint numSamples, GLboolean fixedSampleLocations) initialize_texture_fields() argument
465 _mesa_set_texture_view_state(struct gl_context *ctx, struct gl_texture_object *texObj, GLenum target, GLuint levels) _mesa_set_texture_view_state() argument
531 texture_view(struct gl_context *ctx, struct gl_texture_object *origTexObj, struct gl_texture_object *texObj, GLenum target, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers, bool no_error) texture_view() argument
711 _mesa_TextureView_no_error(GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers) _mesa_TextureView_no_error() argument
729 _mesa_TextureView(GLuint texture, GLenum target, GLuint origtexture, GLenum internalformat, GLuint minlevel, GLuint numlevels, GLuint minlayer, GLuint numlayers) _mesa_TextureView() argument
[all...]
/third_party/skia/third_party/externals/angle2/src/libGLESv2/
H A Dentry_points_gles_3_0_autogen.h18 ANGLE_EXPORT void GL_APIENTRY GL_BeginQuery(GLenum target, GLuint id);
20 ANGLE_EXPORT void GL_APIENTRY GL_BindBufferBase(GLenum target, GLuint index, GLuint buffer);
22 GL_BindBufferRange(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size);
24 ANGLE_EXPORT void GL_APIENTRY GL_BindTransformFeedback(GLenum target, GLuint id);
48 ANGLE_EXPORT void GL_APIENTRY GL_CompressedTexImage3D(GLenum target,
57 ANGLE_EXPORT void GL_APIENTRY GL_CompressedTexSubImage3D(GLenum target,
73 ANGLE_EXPORT void GL_APIENTRY GL_CopyTexSubImage3D(GLenum target,
103 ANGLE_EXPORT void GL_APIENTRY GL_EndQuery(GLenum target);
106 ANGLE_EXPORT void GL_APIENTRY GL_FlushMappedBufferRange(GLenum target,
109 ANGLE_EXPORT void GL_APIENTRY GL_FramebufferTextureLayer(GLenum target,
[all...]

Completed in 24 milliseconds

1...<<21222324252627282930>>...278