OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:shaderc_compiler_t
(Results
1 - 4
of
4
) sorted by null
/prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc/include/shaderc/
shaderc.h
81
//
shaderc_compiler_t
compiler = shaderc_compiler_initialize();
90
//
shaderc_compiler_t
compiler = shaderc_compiler_initialize();
100
typedef struct shaderc_compiler*
shaderc_compiler_t
;
typedef in typeref:struct:shaderc_compiler
102
// Returns a
shaderc_compiler_t
that can be used to compile modules.
104
// Any function operating on
shaderc_compiler_t
must offer the basic
111
shaderc_compiler_t
shaderc_compiler_initialize(void);
113
// Releases the resources held by the
shaderc_compiler_t
.
115
// involving this
shaderc_compiler_t
.
116
void shaderc_compiler_release(
shaderc_compiler_t
);
261
const
shaderc_compiler_t
compiler, const char* source_text
[
all
...]
shaderc.hpp
399
shaderc_compiler_t
compiler_;
/prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc/src/
shaderc_c_smoke_test.c
30
shaderc_compiler_t
compiler;
shaderc.cc
324
shaderc_compiler_t
shaderc_compiler_initialize() {
327
shaderc_compiler_t
compiler = new (std::nothrow) shaderc_compiler;
332
void shaderc_compiler_release(
shaderc_compiler_t
compiler) { delete compiler; }
336
const
shaderc_compiler_t
compiler, const char* source_text,
413
const
shaderc_compiler_t
compiler, const char* source_text,
424
const
shaderc_compiler_t
compiler, const char* source_text,
435
const
shaderc_compiler_t
compiler, const char* source_text,
446
const
shaderc_compiler_t
compiler, const char* source_assembly,
Completed in 48 milliseconds